aboutsummaryrefslogtreecommitdiff
path: root/modules/benchmark/fib.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/benchmark/fib.c')
-rw-r--r--modules/benchmark/fib.c2
1 files changed, 1 insertions, 1 deletions
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();