summary refs log tree commit diff
path: root/socket/connect.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/connect.c')
-rw-r--r--socket/connect.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/socket/connect.c b/socket/connect.c
index 45cee74a5a..e02b8694a3 100644
--- a/socket/connect.c
+++ b/socket/connect.c
@@ -23,10 +23,7 @@
    and the only address from which to accept transmissions.
    Return 0 on success, -1 for errors.  */
 int
-__connect (fd, addr, len)
-     int fd;
-     __CONST_SOCKADDR_ARG addr;
-     socklen_t len;
+__connect (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len)
 {
   __set_errno (ENOSYS);
   return -1;