summaryrefslogtreecommitdiff
path: root/socket/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/socket.c')
-rw-r--r--socket/socket.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/socket/socket.c b/socket/socket.c
index 9fe8fd9929..19d74ee60a 100644
--- a/socket/socket.c
+++ b/socket/socket.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
@@ -22,10 +22,7 @@
protocol PROTOCOL. If PROTOCOL is zero, one is chosen automatically.
Returns a file descriptor for the new socket, or -1 for errors. */
int
-__socket (domain, type, protocol)
- int domain;
- int type;
- int protocol;
+__socket (int domain, int type, int protocol)
{
__set_errno (ENOSYS);
return -1;