blob: 5ed30183dff17c4bc7af033ed8b90080f75760c0 [file] [log] [blame]
#include <threads.h>
#include <pthread.h>
void call_once(once_flag *flag, void (*func)(void))
{
__pthread_once(flag, func);
}