musl/src/thread/sem_unlink.c

8 lines
109 B
C
Raw Normal View History

2011-03-04 00:45:59 -05:00
#include <semaphore.h>
#include <sys/mman.h>
int sem_unlink(const char *name)
{
return shm_unlink(name);
}