From 42ca148113de4800d41cbd0491c508160bb1cf36 Mon Sep 17 00:00:00 2001 From: Owen Shepherd Date: Thu, 27 Dec 2012 21:40:28 +0000 Subject: [PATCH] threads.h: correct definition of call_once when no fast path is defined --- includes/threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/threads.h b/includes/threads.h index 2e1f6fa..6502153 100644 --- a/includes/threads.h +++ b/includes/threads.h @@ -33,7 +33,7 @@ static inline void call_once(once_flag *flag, void (*func)(void)) } } #else -void call_once(once_flag *flag, void (*func)(void)) +void call_once(once_flag *flag, void (*func)(void)); #endif #if defined(_PDCLIB_MTX_T) -- 2.40.0