From fdd4aef34003587d7fd9ed754dd35ce901b639bf Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Mon, 5 Jan 2015 18:44:36 +0100 Subject: Make thirty functions static to reduce binary size If any of those functions should be (unused) API functions, they can easily be turned back once really needed. Detected using a new cppcheck check that uses the internal symbol database to catch functions that are only used in the current file. Change-Id: Ic2b1e5b8020b76397f11cefc4e205f3b7ac1f184 --- apps/plugins/pdbox/PDa/src/d_imayer_fft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins') diff --git a/apps/plugins/pdbox/PDa/src/d_imayer_fft.c b/apps/plugins/pdbox/PDa/src/d_imayer_fft.c index a78b937..f0d3f34 100644 --- a/apps/plugins/pdbox/PDa/src/d_imayer_fft.c +++ b/apps/plugins/pdbox/PDa/src/d_imayer_fft.c @@ -110,7 +110,7 @@ static long long halsec[TRIG_TAB_SIZE]= {1,2,3}; #define SQRT2 ftofix(1.414213562373095048801688724209698) -void imayer_fht(t_fixed *fz, int n) +static void imayer_fht(t_fixed *fz, int n) { int k,k1,k2,k3,k4,kx; t_fixed *fi,*fn,*gi; -- cgit v1.1