diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2016-03-23 14:52:43 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2016-03-23 14:52:43 +0000 |
commit | e4c85e46c603d0c49c75020156eecc3b5db53ada (patch) | |
tree | 74dac2898a546779519407dad1317c3e1de0e6dc /bin/stty/cchar.c | |
parent | ece5130571f5f830f14ff91df13d6fd290b4fa6e (diff) |
header cleanup
from Edgar Pettijohn, with a correction from deraadt@
Diffstat (limited to 'bin/stty/cchar.c')
-rw-r--r-- | bin/stty/cchar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/stty/cchar.c b/bin/stty/cchar.c index f585a633ede..fda596ba946 100644 --- a/bin/stty/cchar.c +++ b/bin/stty/cchar.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cchar.c,v 1.11 2009/10/27 23:59:22 deraadt Exp $ */ +/* $OpenBSD: cchar.c,v 1.12 2016/03/23 14:52:42 mmcc Exp $ */ /* $NetBSD: cchar.c,v 1.10 1996/05/07 18:20:05 jtc Exp $ */ /*- @@ -31,12 +31,14 @@ */ #include <sys/types.h> +#include <sys/ioctl.h> #include <err.h> #include <limits.h> #include <stddef.h> #include <stdlib.h> #include <string.h> +#include <termios.h> #include "stty.h" #include "extern.h" |