summary refs log tree commit diff
path: root/sysdeps/unix/bsd/stty.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/bsd/stty.c')
-rw-r--r--sysdeps/unix/bsd/stty.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/unix/bsd/stty.c b/sysdeps/unix/bsd/stty.c
index 0f434e29a1..a8ac0e63a1 100644
--- a/sysdeps/unix/bsd/stty.c
+++ b/sysdeps/unix/bsd/stty.c
@@ -20,9 +20,7 @@
 
 /* Set the terminal parameters associated with FD to *PARAMS.  */
 int
-stty (fd, params)
-     int fd;
-     const struct sgttyb *params;
+stty (int fd, const struct sgttyb *params)
 {
   return ioctl (fd, TIOCSETP, (void *) params);
 }