diff options
author | Darren Tucker <dtucker@zip.com.au> | 2017-03-16 13:45:17 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2017-03-16 13:45:17 +1100 |
commit | b55f634e96b9c5b0cd991e23a9ca181bec4bdbad (patch) | |
tree | 7257185c0120c6bff4ee587fb6115c042cf9ffe5 | |
parent | 55a1117d7342a0bf8b793250cf314bab6b482b99 (diff) |
Wrap stdint.h in #ifdef HAVE_STDINT_H
-rw-r--r-- | regress/unittests/conversion/tests.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/regress/unittests/conversion/tests.c b/regress/unittests/conversion/tests.c index eaa96bb25..ebb48a14d 100644 --- a/regress/unittests/conversion/tests.c +++ b/regress/unittests/conversion/tests.c | |||
@@ -8,7 +8,9 @@ | |||
8 | #include <sys/types.h> | 8 | #include <sys/types.h> |
9 | #include <sys/param.h> | 9 | #include <sys/param.h> |
10 | #include <stdio.h> | 10 | #include <stdio.h> |
11 | #ifdef HAVE_STDINT_H | ||
11 | #include <stdint.h> | 12 | #include <stdint.h> |
13 | #endif | ||
12 | #include <stdlib.h> | 14 | #include <stdlib.h> |
13 | #include <string.h> | 15 | #include <string.h> |
14 | 16 | ||