summaryrefslogtreecommitdiffstats
path: root/lib/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thread.c')
-rw-r--r--lib/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thread.c b/lib/thread.c
index 9c3ee823..cb513323 100644
--- a/lib/thread.c
+++ b/lib/thread.c
@@ -102,7 +102,7 @@ timeval_cmp (struct timeval a, struct timeval b)
? a.tv_usec - b.tv_usec : a.tv_sec - b.tv_sec);
}
-static unsigned long
+unsigned long
timeval_elapsed (struct timeval a, struct timeval b)
{
return (((a.tv_sec - b.tv_sec) * TIMER_SECOND_MICRO)