blob: 266422ef5c665e8242e69a0cc929e4af9d804ad6 [file] [log] [blame]
#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
}