Always include <stdint.h> and <limits.h> for SIZE_MAX

This commit is contained in:
Frank Denis 2015-11-10 19:01:39 +01:00
parent ceb9c566fb
commit 1f18cf383a
3 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,7 @@
#ifndef crypto_scrypt_H
#define crypto_scrypt_H
#include <limits.h>
#include <stdint.h>
#include <stddef.h>

View File

@ -1,4 +1,6 @@
#include <limits.h>
#include <stdint.h>
#include <string.h>
#include "crypto_hash_sha512.h"

View File

@ -1,5 +1,6 @@
#include <limits.h>
#include <stdint.h>
#include <string.h>
#include "api.h"