Browse Source

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

pre-master-46
dwarning 13 years ago
committed by rlar
parent
commit
a90f916883
  1. 4
      src/include/ngspice/fftext.h
  2. 4
      src/maths/fft/fftext.c

4
src/include/ngspice/fftext.h

@ -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

4
src/maths/fft/fftext.c

@ -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 */
Loading…
Cancel
Save