mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
This commit is contained in:
parent
1c4a011e9c
commit
ac413b62ea
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue