summaryrefslogtreecommitdiff
path: root/sysvipc/msgsnd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysvipc/msgsnd.c')
-rw-r--r--sysvipc/msgsnd.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/sysvipc/msgsnd.c b/sysvipc/msgsnd.c
index 49eba4baac..d52d3cbb04 100644
--- a/sysvipc/msgsnd.c
+++ b/sysvipc/msgsnd.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, August 1995.
@@ -26,11 +26,7 @@
when the limit of the message queue length is reached. */
int
-msgsnd (msqid, msgp, msgsz, msgflg)
- int msqid;
- const void *msgp;
- size_t msgsz;
- int msgflg;
+msgsnd (int msqid, const void *msgp, size_t msgsz, int msgflg)
{
__set_errno (ENOSYS);
return -1;