remove no-longer-needed unblocking of signals in pthread_create
[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 }