mirror of
https://github.com/fluencelabs/musl
synced 2025-06-02 01:21:34 +00:00
8 lines
109 B
C
8 lines
109 B
C
#include <semaphore.h>
|
|
#include <sys/mman.h>
|
|
|
|
int sem_unlink(const char *name)
|
|
{
|
|
return shm_unlink(name);
|
|
}
|