Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
thread
call_once.c
pretty
plain
permalink
blame
history
•
7 lines
•
128 B
1
#include <threads.h>
2
#include <pthread.h>
3
4
void call_once(once_flag *flag, void (*func)(void))
5
{
6
	__pthread_once(flag, func);
7
}