From c2cd25bff89c3581780e7eb267262cb8c4da0d38 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 6 Apr 2011 20:32:53 -0400 Subject: consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix --- src/ipc/shmctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipc/shmctl.c') diff --git a/src/ipc/shmctl.c b/src/ipc/shmctl.c index 3645fe2d..b2bdfa18 100644 --- a/src/ipc/shmctl.c +++ b/src/ipc/shmctl.c @@ -4,7 +4,7 @@ int shmctl(int id, int cmd, struct shmid_ds *buf) { -#ifdef __NR_shmctl +#ifdef SYS_shmctl return syscall(SYS_shmctl, id, cmd, buf); #else return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, buf); -- cgit v1.2.1