type exposure fixes in sys/sem.h
[musl] / src / ipc / shmctl.c
index 3645fe2..ae6ce69 100644 (file)
@@ -4,9 +4,9 @@
 
 int shmctl(int id, int cmd, struct shmid_ds *buf)
 {
-#ifdef __NR_shmctl
-       return syscall(SYS_shmctl, id, cmd, buf);
+#ifdef SYS_shmctl
+       return syscall(SYS_shmctl, id, cmd | IPC_MODERN, buf);
 #else
-       return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, buf);
+       return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, 0, buf, 0);
 #endif
 }