diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 02:31:33 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 02:31:33 +0100 |
commit | ac413b62ea1957e80c711acbe0c11b908273fc01 (patch) | |
tree | 44725928c3b515438dae08252aef55ce00c46f5a /crypto_api.h | |
parent | - (dtucker) [loginrec.c] Cast to the types specfied in the format (diff) | |
download | openssh-ac413b62ea1957e80c711acbe0c11b908273fc01.tar.xz openssh-ac413b62ea1957e80c711acbe0c11b908273fc01.zip |
- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
Diffstat (limited to 'crypto_api.h')
-rw-r--r-- | crypto_api.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto_api.h b/crypto_api.h index 580ba79bd..5820ce8fa 100644 --- a/crypto_api.h +++ b/crypto_api.h @@ -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; |