about summary refs log tree commit diff
path: root/sysdeps/unix/bsd/tcgetattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/bsd/tcgetattr.c')
-rw-r--r--sysdeps/unix/bsd/tcgetattr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/unix/bsd/tcgetattr.c b/sysdeps/unix/bsd/tcgetattr.c
index 03e1d11b12..dca430eabb 100644
--- a/sysdeps/unix/bsd/tcgetattr.c
+++ b/sysdeps/unix/bsd/tcgetattr.c
@@ -30,9 +30,7 @@
 
 /* Put the state of FD into *TERMIOS_P.  */
 int
-__tcgetattr (fd, termios_p)
-     int fd;
-     struct termios *termios_p;
+__tcgetattr (int fd, struct termios *termios_p)
 {
   return __ioctl (fd, TIOCGETA, termios_p);
 }