diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-26 04:22:14 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-26 04:22:14 +0000 |
commit | 515a30957abf36784c2dc22d44fb5d47c5c62c25 (patch) | |
tree | d6a4d1db0b6a0219a37c051b7f3f7756d29939e8 /bin | |
parent | d672589b4b96d90a40a2fc7b58449a25701e1872 (diff) |
<sys/time.h>, <errno.h>, and <stdlib.h> are unnecessary; sort #includes
Diffstat (limited to 'bin')
-rw-r--r-- | bin/pax/tty_subs.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/pax/tty_subs.c b/bin/pax/tty_subs.c index b331eb09336..a07264ae6b9 100644 --- a/bin/pax/tty_subs.c +++ b/bin/pax/tty_subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty_subs.c,v 1.16 2014/11/23 05:28:12 guenther Exp $ */ +/* $OpenBSD: tty_subs.c,v 1.17 2016/08/26 04:22:13 guenther Exp $ */ /* $NetBSD: tty_subs.c,v 1.5 1995/03/21 09:07:52 cgd Exp $ */ /*- @@ -35,17 +35,15 @@ */ #include <sys/types.h> -#include <sys/time.h> #include <sys/stat.h> #include <fcntl.h> +#include <stdarg.h> #include <stdio.h> -#include <errno.h> -#include <unistd.h> -#include <stdlib.h> #include <string.h> +#include <unistd.h> + #include "pax.h" #include "extern.h" -#include <stdarg.h> /* * routines that deal with I/O to and from the user |