mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 07:08:59 +00:00
7 lines
98 B
C
Vendored
7 lines
98 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int pthread_spin_unlock(pthread_spinlock_t *s)
|
|
{
|
|
*s = 0;
|
|
return 0;
|
|
}
|