musl-tcc/src/thread/call_once.c
2022-03-20 16:48:53 +08:00

8 lines
128 B
C

#include <threads.h>
#include <pthread.h>
void call_once(once_flag *flag, void (*func)(void))
{
__pthread_once(flag, func);
}