1 #ifndef PQCLEAN_MCELIECE6688128F_VEC_FFT_H
2 #define PQCLEAN_MCELIECE6688128F_VEC_FFT_H
3 /*
4   This file is for the Gao-Mateer FFT
5   sse http://www.math.clemson.edu/~sgao/papers/GM10.pdf
6 */
7 
8 #include <stdint.h>
9 
10 #include "params.h"
11 #include "vec.h"
12 
13 void PQCLEAN_MCELIECE6688128F_VEC_fft(vec out[][ GFBITS ], vec in[][GFBITS]);
14 
15 #endif
16 
17