From 1f18cf383a218a2ef109a4da4ca24953526bba65 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 10 Nov 2015 19:01:39 +0100 Subject: [PATCH] Always include and for SIZE_MAX --- .../crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h | 1 + src/libsodium/crypto_sign/ed25519/ref10/obsolete.c | 2 ++ src/libsodium/crypto_sign/ed25519/ref10/open.c | 1 + 3 files changed, 4 insertions(+) diff --git a/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h b/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h index 4cfd8c0d..a0b92cfc 100644 --- a/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +++ b/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h @@ -30,6 +30,7 @@ #ifndef crypto_scrypt_H #define crypto_scrypt_H +#include #include #include diff --git a/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c b/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c index ecb0716b..98b37b75 100644 --- a/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c +++ b/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c @@ -1,4 +1,6 @@ +#include +#include #include #include "crypto_hash_sha512.h" diff --git a/src/libsodium/crypto_sign/ed25519/ref10/open.c b/src/libsodium/crypto_sign/ed25519/ref10/open.c index 71e9d1bb..cf265ec6 100644 --- a/src/libsodium/crypto_sign/ed25519/ref10/open.c +++ b/src/libsodium/crypto_sign/ed25519/ref10/open.c @@ -1,5 +1,6 @@ #include +#include #include #include "api.h"