avoid a compiler warning, (unused static function)

This commit is contained in:
Francesco Lannutti 2012-11-06 19:13:54 +01:00 committed by rlar
parent 32c6a76fc2
commit 6b7f408ca8
1 changed files with 6 additions and 0 deletions

View File

@ -21,7 +21,9 @@ Author: 2008 Holger Vogt
#include "ngspice/fftext.h"
#ifndef GREEN
static void fftext(double*, double*, long int, long int, int);
#endif
void
@ -582,6 +584,8 @@ done:
}
#ifndef GREEN
static void
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 */