]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
authorDarren Tucker <dtucker@zip.com.au>
Fri, 17 Jan 2014 01:31:33 +0000 (12:31 +1100)
committerDarren Tucker <dtucker@zip.com.au>
Fri, 17 Jan 2014 01:31:33 +0000 (12:31 +1100)
ChangeLog
crypto_api.h

index 14098dbcf6981030f9ca9382d662fad5fd586871..57c0a596d878b41d8aa26f51e20213b4979b39dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 580ba79bd20a47dcc82c6c239ede90ba72ee812f..5820ce8fa1f6332c6cd8046975e1f275e6dd67fd 100644 (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;