diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/msgrcv.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/msgrcv.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/msgrcv.c b/sysdeps/unix/sysv/linux/msgrcv.c index 8acaa8900e..1c3698c2f5 100644 --- a/sysdeps/unix/sysv/linux/msgrcv.c +++ b/sysdeps/unix/sysv/linux/msgrcv.c @@ -33,12 +33,8 @@ struct ipc_kludge ssize_t -__libc_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg) - int msqid; - void *msgp; - size_t msgsz; - long int msgtyp; - int msgflg; +__libc_msgrcv (int msqid, void *msgp, size_t msgsz, long int msgtyp, + int msgflg) { /* The problem here is that Linux' calling convention only allows up to fives parameters to a system call. */ |