about summary refs log tree commit diff
path: root/socket/shutdown.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/shutdown.c')
-rw-r--r--socket/shutdown.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/socket/shutdown.c b/socket/shutdown.c
index ea5f7b3042..912846e33d 100644
--- a/socket/shutdown.c
+++ b/socket/shutdown.c
@@ -25,9 +25,7 @@
      2 = No more receptions or transmissions.
    Returns 0 on success, -1 for errors.  */
 int
-shutdown (fd, how)
-     int fd;
-     int how;
+shutdown (int fd, int how)
 {
   __set_errno (ENOSYS);
   return -1;