diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-06-12 05:32:29 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-06-12 05:32:29 +1000 |
commit | 985ee2cbc3e43bc65827c3c0d4df3faa99160c37 (patch) | |
tree | 44924934654726f1071cd050732bc58e365612f9 /regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c | |
parent | cf5392c2db2bb1dbef9818511d34056404436109 (diff) |
- (dtucker) [regress/unittests/sshbuf/*.c regress/unittests/test_helper/*]
Wrap stdlib.h include an ifdef for platforms that don't have it.
Diffstat (limited to 'regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c')
-rw-r--r-- | regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c b/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c index 3987515a4..2a242e9f2 100644 --- a/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c +++ b/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c | |||
@@ -10,7 +10,9 @@ | |||
10 | #include <sys/types.h> | 10 | #include <sys/types.h> |
11 | #include <sys/param.h> | 11 | #include <sys/param.h> |
12 | #include <stdio.h> | 12 | #include <stdio.h> |
13 | #include <stdint.h> | 13 | #ifdef HAVE_STDINT_H |
14 | # include <stdint.h> | ||
15 | #endif | ||
14 | #include <stdlib.h> | 16 | #include <stdlib.h> |
15 | #include <string.h> | 17 | #include <string.h> |
16 | 18 | ||