mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
This commit is contained in:
parent
ac413b62ea
commit
99df369d03
|
@ -7,6 +7,7 @@
|
||||||
- (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.
|
- (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
|
||||||
|
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
|
||||||
|
|
||||||
20140118
|
20140118
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <stdint.h>
|
#ifdef HAVE_STDINT_H
|
||||||
|
# include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "poly1305.h"
|
#include "poly1305.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue