mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 12:41:32 +00:00
7 lines
94 B
C
7 lines
94 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_spin_unlock(pthread_spinlock_t *s)
|
|
{
|
|
return *s = 0;
|
|
}
|