comparison dsp/transforms/kissfft/kiss_fft.h @ 72:d0b35b1e3a98

* Build fixes for OS/X
author cannam
date Tue, 02 Jun 2009 11:25:58 +0000
parents 6cb2b3cd5356
children
comparison
equal deleted inserted replaced
71:c10ac368f5cf 72:d0b35b1e3a98
3 3
4 #include <stdlib.h> 4 #include <stdlib.h>
5 #include <stdio.h> 5 #include <stdio.h>
6 #include <math.h> 6 #include <math.h>
7 #include <memory.h> 7 #include <memory.h>
8 #ifdef __APPLE__
9 #include <malloc/malloc.h>
10 #else
8 #include <malloc.h> 11 #include <malloc.h>
12 #endif
9 13
10 #ifdef __cplusplus 14 #ifdef __cplusplus
11 extern "C" { 15 extern "C" {
12 #endif 16 #endif
13 17