- (dtucker) [openbsd-compat/bcrypt_pbkdf.c] Wrap stdlib.h include inside
#ifdef HAVE_STDINT_H.
This commit is contained in:
parent
f45f78ae43
commit
c3ed065ce8
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue