aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/wasi/thread-stub/pthread_spin_unlock.c
blob: f9d8a23dc644fcd6a4c8a9693df78d3a53082e18 (plain)
1
2
3
4
5
6
7
#include "pthread_impl.h"

int pthread_spin_unlock(pthread_spinlock_t *s)
{
	*s = 0;
	return 0;
}