#include <threads.h>
#include <pthread.h>
void call_once(once_flag *flag, void (*func)(void))
{
__pthread_once(flag, func);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#include <threads.h>
#include <pthread.h>
void call_once(once_flag *flag, void (*func)(void))
{
__pthread_once(flag, func);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif