fftext.c, move the Bourke FFT code to fftext.c (rename macro)

This commit is contained in:
dwarning 2013-11-24 18:27:19 +01:00 committed by rlar
parent c61e1bc8c6
commit a90f916883
2 changed files with 4 additions and 4 deletions

View File

@ -110,6 +110,6 @@ void rspectprod(double *data1, double *data2, double *outdata, int N);
//#define CACHEFILLMALLOC(n) malloc((n)+CACHELINEFILL)
#ifndef GREEN
static void fftext(double*, double*, long int, long int, int);
#ifdef BOURKE
static void fftext(double *x, double *y, long int n, long int nn, int dir);
#endif

View File

@ -250,7 +250,7 @@ void rspectprod(double *data1, double *data2, double *outdata, int N)
}
#ifndef GREEN
#ifdef BOURKE
static void
fftext(double *x, double *y, long int n, long int nn, int dir)
@ -339,4 +339,4 @@ fftext(double *x, double *y, long int n, long int nn, int dir)
}
}
#endif /* GREEN */
#endif /* BOURKE */