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

8 lines
98 B
C
Vendored

#include "pthread_impl.h"
int pthread_spin_unlock(pthread_spinlock_t *s)
{
*s = 0;
return 0;
}