diff --git a/ChangeLog b/ChangeLog index 4542fbb85..51eff2d6f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ 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. + - (dtucker) [blocks.c fe25519.c ge25519.c hash.c sc25519.c verify.c] Include + includes.h to pull in all of the compatibility stuff. 20140118 - (djm) OpenBSD CVS Sync diff --git a/blocks.c b/blocks.c index ba569b00a..ad93fe509 100644 --- a/blocks.c +++ b/blocks.c @@ -5,6 +5,8 @@ * Copied from nacl-20110221/crypto_hashblocks/sha512/ref/blocks.c */ +#include "includes.h" + #include "crypto_api.h" typedef unsigned long long uint64; diff --git a/fe25519.c b/fe25519.c index 2f368ebe6..e54fd1547 100644 --- a/fe25519.c +++ b/fe25519.c @@ -6,6 +6,8 @@ * Copied from supercop-20130419/crypto_sign/ed25519/ref/fe25519.c */ +#include "includes.h" + #define WINDOWSIZE 1 /* Should be 1,2, or 4 */ #define WINDOWMASK ((1<