diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 14:18:45 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 14:18:45 +1100 |
commit | c3ed065ce8417aaa46490836648c173a5010f226 (patch) | |
tree | 26edf9ec2cf992cfd99e621608b9f91dc90215df /openbsd-compat | |
parent | f45f78ae437062c7d9506c5f475b7215f486be44 (diff) |
- (dtucker) [openbsd-compat/bcrypt_pbkdf.c] Wrap stdlib.h include inside
#ifdef HAVE_STDINT_H.
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/bcrypt_pbkdf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openbsd-compat/bcrypt_pbkdf.c b/openbsd-compat/bcrypt_pbkdf.c index e0736feaf..91b6ba07b 100644 --- a/openbsd-compat/bcrypt_pbkdf.c +++ b/openbsd-compat/bcrypt_pbkdf.c | |||
@@ -22,7 +22,9 @@ | |||
22 | #include <sys/types.h> | 22 | #include <sys/types.h> |
23 | #include <sys/param.h> | 23 | #include <sys/param.h> |
24 | 24 | ||
25 | #include <stdlib.h> | 25 | #ifdef HAVE_STDLIB_H |
26 | # include <stdlib.h> | ||
27 | #endif | ||
26 | #include <string.h> | 28 | #include <string.h> |
27 | 29 | ||
28 | #ifdef HAVE_BLF_H | 30 | #ifdef HAVE_BLF_H |