change include order; add missing includes (#185)

This commit is contained in:
Matthias J. Kannwischer 2019-06-11 08:09:07 -05:00 committed by Thom Wiggers
부모 e56b2e5556
커밋 d5818a40b0
5개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제

파일 보기

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

파일 보기

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

파일 보기

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

파일 보기

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

파일 보기

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