zig/lib/libc/wasi/thread-stub/pthread_once.c
2025-08-20 19:18:11 +02:00

12 lines
240 B
C
Vendored

#include "pthread_impl.h"
int __pthread_once(pthread_once_t *control, void (*init)(void))
{
if (!*control) {
init();
*control = 1;
}
return 0;
}
weak_alias(__pthread_once, pthread_once);