X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fipc%2Fmsgctl.c;h=d50e395b2534cdbcee8e56407bc28557c9d89d67;hp=7c84291c2f63c33ddb9ba42f22148aafef5769f0;hb=c2cd25bff89c3581780e7eb267262cb8c4da0d38;hpb=b2486a8922bf4977bd82c8190258e39de28c053b 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);