musl/src/thread/pthread_spin_unlock.c
2011-02-12 00:22:29 -05:00

7 lines
94 B
C

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