about summary refs log tree commit diff
path: root/socket/socketpair.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/socketpair.c')
-rw-r--r--socket/socketpair.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/socket/socketpair.c b/socket/socketpair.c
index e0948f03bb..646c46b56b 100644
--- a/socket/socketpair.c
+++ b/socket/socketpair.c
@@ -23,11 +23,7 @@
    descriptors for them in FDS[0] and FDS[1].  If PROTOCOL is zero,
    one will be chosen automatically.  Returns 0 on success, -1 for errors.  */
 int
-socketpair (domain, type, protocol, fds)
-     int domain;
-     int type;
-     int protocol;
-     int fds[2];
+socketpair (int domain, int type, int protocol, int fds[2])
 {
   __set_errno (ENOSYS);
   return -1;