Files
llgo/c/pthread/sync/_pthd/pthd.c
2024-06-17 12:14:24 +08:00

7 lines
131 B
C

#include <pthread.h>
pthread_once_t llgoSyncOnceInitVal() {
pthread_once_t initVal = PTHREAD_ONCE_INIT;
return initVal;
}