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
+1 -1
View File
@@ -8,7 +8,7 @@ extern "C" {
#include <sys/types.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
typedef struct randombytes_implementation {
+1
View File
@@ -2,6 +2,7 @@
#include <sys/types.h>
#include <assert.h>
#include <inttypes.h>
#include <limits.h>
#include "randombytes.h"