mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
210 B
12 lines
210 B
#include <sys/shm.h>
|
|
#include "syscall.h"
|
|
#include "ipc.h"
|
|
|
|
int shmdt(const void *addr)
|
|
{
|
|
#ifdef SYS_shmdt
|
|
return syscall(SYS_shmdt, addr);
|
|
#else
|
|
return syscall(SYS_ipc, IPCOP_shmdt, 0, 0, 0, addr);
|
|
#endif
|
|
}
|
|
|