about summary refs log tree commit diff
path: root/socket/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/socket.c')
-rw-r--r--socket/socket.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/socket/socket.c b/socket/socket.c
index 9fe8fd9929..6f879eafad 100644
--- a/socket/socket.c
+++ b/socket/socket.c
@@ -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;