From 12e3edcb11b61334afac46183a79ec51124c5302 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 5 Oct 2012 17:34:11 +0000 Subject: remove lib/ folder with duplicate source files svn path=/trunk/externals/fftease/; revision=16340 --- lib/power_of_two.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lib/power_of_two.c (limited to 'lib/power_of_two.c') diff --git a/lib/power_of_two.c b/lib/power_of_two.c deleted file mode 100644 index 038c6a3..0000000 --- a/lib/power_of_two.c +++ /dev/null @@ -1,17 +0,0 @@ - -int power_of_two(int test) -{ - int limit = 8192; - int compare = 1; - // post("testing what we thing is an int:%d",test); - do { - if(test == compare){ - // post("good power of 2 found!"); - return 1; - } - compare *= 2; - } while (compare <= limit); - - return 0; -} - -- cgit v1.2.1