diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/tcflow.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/tcflow.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/tcflow.c b/sysdeps/unix/sysv/linux/tcflow.c index cbf82c9761..c1c7163d32 100644 --- a/sysdeps/unix/sysv/linux/tcflow.c +++ b/sysdeps/unix/sysv/linux/tcflow.c @@ -22,9 +22,7 @@ /* Suspend or restart transmission on FD. */ int -tcflow (fd, action) - int fd; - int action; +tcflow (int fd, int action) { return __ioctl (fd, TCXONC, action); } |