mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-26 07:15:36 +02:00
- (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
|
- (djm) [sftp-client.c] signed/unsigned comparison fix
|
||||||
- (dtucker) [loginrec.c] Cast to the types specfied in the format
|
- (dtucker) [loginrec.c] Cast to the types specfied in the format
|
||||||
specification to prevent warnings.
|
specification to prevent warnings.
|
||||||
|
- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
|
||||||
|
|
||||||
20140118
|
20140118
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -8,7 +8,9 @@
|
|||||||
#ifndef crypto_api_h
|
#ifndef crypto_api_h
|
||||||
#define crypto_api_h
|
#define crypto_api_h
|
||||||
|
|
||||||
#include <stdint.h>
|
#ifdef HAVE_STDINT_H
|
||||||
|
# include <stdint.h>
|
||||||
|
#endif
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
typedef int32_t crypto_int32;
|
typedef int32_t crypto_int32;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user