change include order; add missing includes (#185)

Tento commit je obsažen v:
Matthias J. Kannwischer 2019-06-11 08:09:07 -05:00 odevzdal Thom Wiggers
rodič e56b2e5556
revize d5818a40b0
5 změnil soubory, kde provedl 7 přidání a 6 odebrání

Zobrazit soubor

@ -1,6 +1,7 @@
#ifndef PQCLEAN_DILITHIUM2_CLEAN_API_H #ifndef PQCLEAN_DILITHIUM2_CLEAN_API_H
#define PQCLEAN_DILITHIUM2_CLEAN_API_H #define PQCLEAN_DILITHIUM2_CLEAN_API_H
#include <stddef.h>
#include <stdint.h> #include <stdint.h>
#define MODE 2 #define MODE 2

Zobrazit soubor

@ -1,6 +1,7 @@
#ifndef PQCLEAN_DILITHIUM3_CLEAN_API_H #ifndef PQCLEAN_DILITHIUM3_CLEAN_API_H
#define PQCLEAN_DILITHIUM3_CLEAN_API_H #define PQCLEAN_DILITHIUM3_CLEAN_API_H
#include <stddef.h>
#include <stdint.h> #include <stdint.h>

Zobrazit soubor

@ -1,6 +1,7 @@
#ifndef PQCLEAN_DILITHIUM4_CLEAN_API_H #ifndef PQCLEAN_DILITHIUM4_CLEAN_API_H
#define PQCLEAN_DILITHIUM4_CLEAN_API_H #define PQCLEAN_DILITHIUM4_CLEAN_API_H
#include <stddef.h>
#include <stdint.h> #include <stdint.h>
#define PQCLEAN_DILITHIUM4_CLEAN_CRYPTO_PUBLICKEYBYTES 1760U #define PQCLEAN_DILITHIUM4_CLEAN_CRYPTO_PUBLICKEYBYTES 1760U

Zobrazit soubor

@ -1,10 +1,9 @@
#include "api.h"
#include "randombytes.h"
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include "api.h"
#include "randombytes.h"
#ifndef NTESTS #ifndef NTESTS
#define NTESTS 5 #define NTESTS 5
#endif #endif

Zobrazit soubor

@ -1,11 +1,10 @@
#include "api.h"
#include "randombytes.h"
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include "api.h"
#include "randombytes.h"
#ifndef NTESTS #ifndef NTESTS
#define NTESTS 5 #define NTESTS 5
#endif #endif