summaryrefslogtreecommitdiffstats
path: root/usr.bin/window/wwrint.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/window/wwrint.c')
-rw-r--r--usr.bin/window/wwrint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/window/wwrint.c b/usr.bin/window/wwrint.c
index 5d753f5..3332273 100644
--- a/usr.bin/window/wwrint.c
+++ b/usr.bin/window/wwrint.c
@@ -46,6 +46,7 @@ static char rcsid[] =
#include <fcntl.h>
#endif
+#include <unistd.h>
/*
* Tty input interrupt handler.
* (1) Read input into buffer (wwib*).
@@ -68,7 +69,7 @@ wwrint()
/* we have set c_cc[VMIN] to 0 */
(void) fcntl(0, F_SETFL, O_NONBLOCK|wwnewtty.ww_fflags);
#endif
- n = read(0, wwibq, wwibe - wwibq);
+ n = read(STDIN_FILENO, wwibq, wwibe - wwibq);
#if defined(OLD_TTY) || defined(VMIN_BUG)
(void) fcntl(0, F_SETFL, wwnewtty.ww_fflags);
#endif
OpenPOWER on IntegriCloud