summary refs log tree commit diff
path: root/socket/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/bind.c')
-rw-r--r--socket/bind.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/socket/bind.c b/socket/bind.c
index 4dea286c8f..15ff31f22b 100644
--- a/socket/bind.c
+++ b/socket/bind.c
@@ -20,10 +20,7 @@
 
 /* Give the socket FD the local address ADDR (which is LEN bytes long).  */
 int
-__bind (fd, addr, len)
-     int fd;
-     __CONST_SOCKADDR_ARG addr;
-     socklen_t len;
+__bind (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len)
 {
   __set_errno (ENOSYS);
   return -1;