- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.

This commit is contained in:
Darren Tucker 2014-01-17 12:42:17 +11:00
parent ac413b62ea
commit 99df369d03
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- (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.
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
20140118
- (djm) OpenBSD CVS Sync

View File

@ -8,7 +8,9 @@
#include "includes.h"
#include <sys/types.h>
#include <stdint.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include "poly1305.h"