diff options
author | Peter Wemm <peter@FreeBSD.org> | 2003-09-04 01:33:43 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2003-09-04 01:33:43 +0000 |
commit | c26f60e189d38a990cf3b51189ed0f1bbd394e76 (patch) | |
tree | f81b9bf26b80e0d5e2c551b57deae8c3c2f56548 | |
parent | f3e99b763a9da2678d97d30b31de25d46df6bc63 (diff) |
There is no need to #include <sgtty.h>
Notes
Notes:
svn path=/head/; revision=119729
-rw-r--r-- | gnu/usr.bin/tar/config.h | 2 | ||||
-rw-r--r-- | usr.sbin/rmt/rmt.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/gnu/usr.bin/tar/config.h b/gnu/usr.bin/tar/config.h index 32c75f942e7f..a0aecf4f26d6 100644 --- a/gnu/usr.bin/tar/config.h +++ b/gnu/usr.bin/tar/config.h @@ -273,7 +273,7 @@ #define HAVE_SETLOCALE 1 /* Define if you have the <sgtty.h> header file. */ -#define HAVE_SGTTY_H 1 +/* #define HAVE_SGTTY_H 1 */ /* Define if you have the <stdbool.h> header file. */ #define HAVE_STDBOOL_H 1 diff --git a/usr.sbin/rmt/rmt.c b/usr.sbin/rmt/rmt.c index bdd2c911f4a3..75b1694889db 100644 --- a/usr.sbin/rmt/rmt.c +++ b/usr.sbin/rmt/rmt.c @@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$"); #include <sys/mtio.h> #include <errno.h> #include <fcntl.h> -#include <sgtty.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |