blob: 0ed519b23d10ec5b09071bccca828854fdee02f4 [file] [log] [blame]
#include "pthread_impl.h"
int pthread_spin_unlock(pthread_spinlock_t* s) {
atomic_store(s, 0);
return 0;
}