diff options
Diffstat (limited to 'usr.bin/talk/io.c')
-rw-r--r-- | usr.bin/talk/io.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/talk/io.c b/usr.bin/talk/io.c index a56958213c2..908daab6ad5 100644 --- a/usr.bin/talk/io.c +++ b/usr.bin/talk/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.18 2010/08/12 23:31:29 tedu Exp $ */ +/* $OpenBSD: io.c,v 1.19 2016/02/01 07:29:25 mestre Exp $ */ /* $NetBSD: io.c,v 1.4 1994/12/09 02:14:20 jtc Exp $ */ /* @@ -36,14 +36,14 @@ * ctl.c */ -#include "talk.h" #include <sys/ioctl.h> -#include <sys/time.h> -#include <stdio.h> -#include <poll.h> + #include <errno.h> +#include <poll.h> #include <unistd.h> +#include "talk.h" + #define A_LONG_TIME 1000000 volatile sig_atomic_t gotwinch; |