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