aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2017-05-10 22:40:27 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2017-05-10 22:40:27 +0000
commit0b13d2e56159d9656b45244f5a2e31272b9187dd (patch)
tree3b72ad5bd91938d7c33ae63b7a1299555606ea2c /parse.c
parentf62a02334b3d7ac500f6ed20aac449ecc477a673 (diff)
downloadsrc-0b13d2e56159d9656b45244f5a2e31272b9187dd.tar.gz
src-0b13d2e56159d9656b45244f5a2e31272b9187dd.zip
Import bmake-20170510
Notes
Notes: svn path=/vendor/NetBSD/bmake/dist/; revision=318162
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index fd48f4431190..b351fe11f269 100644
--- a/parse.c
+++ b/parse.c
@@ -130,7 +130,6 @@ __RCSID("$NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $");
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
-#include <stdint.h>
#include "make.h"
#include "hash.h"
@@ -139,6 +138,10 @@ __RCSID("$NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $");
#include "buf.h"
#include "pathnames.h"
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
#ifdef HAVE_MMAP
#include <sys/mman.h>