Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
thread
/
call_once.c
blob: 5ed30183dff17c4bc7af033ed8b90080f75760c0 [
file
]
#include
<threads.h>
#include
<pthread.h>
void
call_once
(
once_flag
*
flag
,
void
(*
func
)(
void
))
{
__pthread_once
(
flag
,
func
);
}