From 36b1110fc48e3237be1fd658c503cfaae16d6c9c Mon Sep 17 00:00:00 2001 From: "Leandro A. F. Pereira" Date: Mon, 3 May 2010 21:43:07 -0300 Subject: Remove outdated arch directory --- modules/benchmark/fib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/benchmark/fib.c') diff --git a/modules/benchmark/fib.c b/modules/benchmark/fib.c index 3ff54dba..0f88be59 100644 --- a/modules/benchmark/fib.c +++ b/modules/benchmark/fib.c @@ -28,7 +28,7 @@ fib(gulong n) return fib(n - 1) + fib(n - 2); } -static void +void benchmark_fib(void) { GTimer *timer = g_timer_new(); -- cgit v1.2.3