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/msgctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipc/msgctl.c') diff --git a/src/ipc/msgctl.c b/src/ipc/msgctl.c index 7c84291c..d50e395b 100644 --- a/src/ipc/msgctl.c +++ b/src/ipc/msgctl.c @@ -4,7 +4,7 @@ int msgctl(int q, int cmd, struct msqid_ds *buf) { -#ifdef __NR_msgctl +#ifdef SYS_msgctl return syscall(SYS_msgctl, q, cmd, buf); #else return syscall(SYS_ipc, IPCOP_msgctl, q, cmd, buf); -- cgit v1.2.1