diff --git a/ChangeLog b/ChangeLog index 2535d59d2..d44a84f2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-10-15 Robert Larice + * src/frontend/com_fft.c , + * src/frontend/com_fft.h : + remove static fftext() from "com_fft.h" + 2010-10-15 Robert Larice * src/frontend/com_fft.c , * src/frontend/com_fft.h , diff --git a/src/frontend/com_fft.c b/src/frontend/com_fft.c index 32c51a95b..b0becc476 100644 --- a/src/frontend/com_fft.c +++ b/src/frontend/com_fft.c @@ -17,6 +17,9 @@ Author: 2008 Holger Vogt #include "parse.h" #include "../misc/misc_time.h" +static void fftext(double*, double*, long int, long int, int); + + void com_fft(wordlist *wl) { diff --git a/src/frontend/com_fft.h b/src/frontend/com_fft.h index faf64cdf4..6fd649843 100644 --- a/src/frontend/com_fft.h +++ b/src/frontend/com_fft.h @@ -8,6 +8,4 @@ void com_fft(wordlist *wl); -static void fftext(double*, double*, long int, long int, int); - #endif