Initial import
[cl-fftw3.git] / c-tests / sizes.c
1 #include <stdio.h>
2 #include <fftw3.h>
3
4 main () {
5   printf("Size of fftw_complex: %d\n", sizeof (fftw_complex));
6   printf("Size of fftw_plan: %d\n", sizeof (fftw_plan));
7 }