From a10759a699a7470f7119c7685995fc91ba3c0384 Mon Sep 17 00:00:00 2001 From: rlar Date: Fri, 15 Oct 2010 18:24:10 +0000 Subject: [PATCH] remove static fftext() from "com_fft.h" --- ChangeLog | 5 +++++ src/frontend/com_fft.c | 3 +++ src/frontend/com_fft.h | 2 -- 3 files changed, 8 insertions(+), 2 deletions(-) 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