diff options
-rw-r--r-- | regress/misc/kexfuzz/kexfuzz.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/misc/kexfuzz/kexfuzz.c b/regress/misc/kexfuzz/kexfuzz.c index 0a4eabc43..e6751d31c 100644 --- a/regress/misc/kexfuzz/kexfuzz.c +++ b/regress/misc/kexfuzz/kexfuzz.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 | #include <unistd.h> | 18 | #include <unistd.h> |