From: Owen Shepherd Date: Thu, 27 Dec 2012 21:40:28 +0000 (+0000) Subject: threads.h: correct definition of call_once when no fast path is defined X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=commitdiff_plain;h=42ca148113de4800d41cbd0491c508160bb1cf36 threads.h: correct definition of call_once when no fast path is defined --- 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)