summaryrefslogtreecommitdiff
path: root/openbsd-compat/recallocarray.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2017-06-09 13:36:29 +1000
committerDarren Tucker <dtucker@zip.com.au>2017-06-09 13:36:29 +1000
commite0f609c8a2ab940374689ab8c854199c3c285a76 (patch)
treec2a9e4161b4d4b0d8f1df9dca940753b96862bc2 /openbsd-compat/recallocarray.c
parent1de5e47a85850526a4fdaf77185134046c050f75 (diff)
Wrap stdint.h include in #ifdef.
Diffstat (limited to 'openbsd-compat/recallocarray.c')
-rw-r--r--openbsd-compat/recallocarray.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsd-compat/recallocarray.c b/openbsd-compat/recallocarray.c
index c281f75e9..3e1156ce2 100644
--- a/openbsd-compat/recallocarray.c
+++ b/openbsd-compat/recallocarray.c
@@ -22,7 +22,9 @@
22 22
23#include <errno.h> 23#include <errno.h>
24#include <stdlib.h> 24#include <stdlib.h>
25#ifdef HAVE_STDINT_H
25#include <stdint.h> 26#include <stdint.h>
27#endif
26#include <string.h> 28#include <string.h>
27#include <unistd.h> 29#include <unistd.h>
28 30