- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.

This commit is contained in:
Darren Tucker 2014-01-17 12:31:33 +11:00
parent 1c4a011e9c
commit ac413b62ea
2 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,7 @@
- (djm) [sftp-client.c] signed/unsigned comparison fix
- (dtucker) [loginrec.c] Cast to the types specfied in the format
specification to prevent warnings.
- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
20140118
- (djm) OpenBSD CVS Sync

View File

@ -8,7 +8,9 @@
#ifndef crypto_api_h
#define crypto_api_h
#include <stdint.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdlib.h>
typedef int32_t crypto_int32;