Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-mainline-go-art-release
/
.
/
src
/
thread
/
call_once.c
blob: 5ed30183dff17c4bc7af033ed8b90080f75760c0 [
file
] [
log
] [
blame
] [
edit
]
#include
<threads.h>
#include
<pthread.h>
void
call_once
(
once_flag
*
flag
,
void
(*
func
)(
void
))
{
__pthread_once
(
flag
,
func
);
}