1 #ifndef PQCLEAN_MCELIECE460896F_AVX_FFT_H
2 #define PQCLEAN_MCELIECE460896F_AVX_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 
9 #include "params.h"
10 #include "vec128.h"
11 #include "vec256.h"
12 #include <stdint.h>
13 
14 void PQCLEAN_MCELIECE460896F_AVX_fft(vec256  /*out*/[][GFBITS], vec128 * /*in*/);
15 
16 #endif
17 
18