summaryrefslogtreecommitdiff
path: root/src/threads/call_once.c
blob: 1f1a792cc6e9ae7537b5b91957baafa0ad487bee (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <threads.h>
#include <pthread.h>

void call_once(once_flag *flag, void (*func)(void))
{
	pthread_once(flag, func);
}

/*
STDC(201112)
*/