summaryrefslogtreecommitdiff
path: root/function.c
diff options
context:
space:
mode:
Diffstat (limited to 'function.c')
-rw-r--r--function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/function.c b/function.c
index 325d930..d1b00cc 100644
--- a/function.c
+++ b/function.c
@@ -14,7 +14,7 @@ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>. */
-#include "make.h"
+#include "makeint.h"
#include "filedef.h"
#include "variable.h"
#include "dep.h"
@@ -736,7 +736,7 @@ check_numeric (const char *s, const char *msg)
strip_whitespace (&s, &end);
for (; s <= end; ++s)
- if (!ISDIGIT (*s)) /* ISDIGIT only evals its arg once: see make.h. */
+ if (!ISDIGIT (*s)) /* ISDIGIT only evals its arg once: see makeint.h. */
break;
if (s <= end || end - beg < 0)