consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
[musl] / src / ipc / shmctl.c
1 #include <sys/shm.h>
2 #include "syscall.h"
3 #include "ipc.h"
4
5 int shmctl(int id, int cmd, struct shmid_ds *buf)
6 {
7 #ifdef SYS_shmctl
8         return syscall(SYS_shmctl, id, cmd, buf);
9 #else
10         return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, buf);
11 #endif
12 }