- (dtucker) [openbsd-compat/bcrypt_pbkdf.c] Wrap stdlib.h include inside

#ifdef HAVE_STDINT_H.
This commit is contained in:
Darren Tucker 2014-01-17 14:18:45 +11:00
parent f45f78ae43
commit c3ed065ce8
2 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,8 @@
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
- (dtucker) [blocks.c fe25519.c ge25519.c hash.c sc25519.c verify.c] Include
includes.h to pull in all of the compatibility stuff.
- (dtucker) [openbsd-compat/bcrypt_pbkdf.c] Wrap stdlib.h include inside
#ifdef HAVE_STDINT_H.
20140118
- (djm) OpenBSD CVS Sync

View File

@ -22,7 +22,9 @@
#include <sys/types.h>
#include <sys/param.h>
#include <stdlib.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <string.h>
#ifdef HAVE_BLF_H