summaryrefslogtreecommitdiff
path: root/socket/socketpair.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/socketpair.c')
-rw-r--r--socket/socketpair.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/socket/socketpair.c b/socket/socketpair.c
index e0948f03bb..3cd7dcad06 100644
--- a/socket/socketpair.c
+++ b/socket/socketpair.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -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;