musl-tcc/src/thread/call_once.c

8 lines
128 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <threads.h>
#include <pthread.h>
void call_once(once_flag *flag, void (*func)(void))
{
__pthread_once(flag, func);
}