mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 00:21:34 +00:00
9 lines
157 B
C
9 lines
157 B
C
|
#include <threads.h>
|
||
|
|
||
|
int __pthread_once(once_flag *, void (*)(void));
|
||
|
|
||
|
void call_once(once_flag *flag, void (*func)(void))
|
||
|
{
|
||
|
__pthread_once(flag, func);
|
||
|
}
|