avoid a compiler warning, (unused static function)
This commit is contained in:
parent
32c6a76fc2
commit
6b7f408ca8
|
|
@ -21,7 +21,9 @@ Author: 2008 Holger Vogt
|
||||||
#include "ngspice/fftext.h"
|
#include "ngspice/fftext.h"
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef GREEN
|
||||||
static void fftext(double*, double*, long int, long int, int);
|
static void fftext(double*, double*, long int, long int, int);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -582,6 +584,8 @@ done:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef GREEN
|
||||||
|
|
||||||
static void
|
static void
|
||||||
fftext(double *x, double *y, long int n, long int nn, int dir)
|
fftext(double *x, double *y, long int n, long int nn, int dir)
|
||||||
{
|
{
|
||||||
|
|
@ -668,3 +672,5 @@ fftext(double *x, double *y, long int n, long int nn, int dir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* GREEN */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue