summaryrefslogtreecommitdiff
path: root/regress/unittests/test_helper/test_helper.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2014-06-12 05:32:29 +1000
committerDarren Tucker <dtucker@zip.com.au>2014-06-12 05:32:29 +1000
commit985ee2cbc3e43bc65827c3c0d4df3faa99160c37 (patch)
tree44924934654726f1071cd050732bc58e365612f9 /regress/unittests/test_helper/test_helper.c
parentcf5392c2db2bb1dbef9818511d34056404436109 (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/test_helper/test_helper.c')
-rw-r--r--regress/unittests/test_helper/test_helper.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/unittests/test_helper/test_helper.c b/regress/unittests/test_helper/test_helper.c
index 5881538ee..6faf99e51 100644
--- a/regress/unittests/test_helper/test_helper.c
+++ b/regress/unittests/test_helper/test_helper.c
@@ -24,7 +24,9 @@
24 24
25#include <fcntl.h> 25#include <fcntl.h>
26#include <stdio.h> 26#include <stdio.h>
27#include <stdint.h> 27#ifdef HAVE_STDINT_H
28# include <stdint.h>
29#endif
28#include <stdlib.h> 30#include <stdlib.h>
29#include <string.h> 31#include <string.h>
30#include <assert.h> 32#include <assert.h>