powerpc-sf longjmp clobbering of val argument
[musl.git] / src / thread / call_once.c
blob5ed30183dff17c4bc7af033ed8b90080f75760c0
1 #include <threads.h>
2 #include <pthread.h>
4 void call_once(once_flag *flag, void (*func)(void))
6 __pthread_once(flag, func);