summaryrefslogtreecommitdiff
path: root/usr.bin/make/parse.c
diff options
context:
space:
mode:
authormaya <maya@NetBSD.org>2017-04-17 13:29:07 +0000
committermaya <maya@NetBSD.org>2017-04-17 13:29:07 +0000
commit0de0174301b87ff22e55285fce53d28676ff193b (patch)
treed906cad9b0e902323314795423dd63d970c2f4e0 /usr.bin/make/parse.c
parent62c0251bcd8d883ebdce7a38ead925f9b3fc3a86 (diff)
Use correct header for SIZE_MAX. from a.rin
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r--usr.bin/make/parse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index 5414ab513ea..7806a80fb44 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $ */
+/* $NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $";
+static char rcsid[] = "$NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $");
+__RCSID("$NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $");
#endif
#endif /* not lint */
#endif
@@ -129,9 +129,9 @@ __RCSID("$NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $");
#include <assert.h>
#include <ctype.h>
#include <errno.h>
-#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
+#include <stdint.h>
#ifndef MAP_FILE
#define MAP_FILE 0