Types definitions in randombytes.h require stdint.h, not inttypes.h

This commit is contained in:
Frank Denis 2013-03-31 14:51:06 -07:00
parent fbdc55daf6
commit 077e89b6b5
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@ extern "C" {
#include <sys/types.h> #include <sys/types.h>
#include <inttypes.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
typedef struct randombytes_implementation { typedef struct randombytes_implementation {

View File

@ -2,6 +2,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <assert.h> #include <assert.h>
#include <inttypes.h>
#include <limits.h> #include <limits.h>
#include "randombytes.h" #include "randombytes.h"