avoid crash on stupid but allowable usage of pthread_mutex_unlock
[musl] / src / thread / sem_unlink.c
1 #include <semaphore.h>
2 #include <sys/mman.h>
3
4 int sem_unlink(const char *name)
5 {
6         return shm_unlink(name);
7 }