diff options
author | Xin LI <delphij@FreeBSD.org> | 2009-12-11 23:35:38 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2009-12-11 23:35:38 +0000 |
commit | 6f2d322192a3949db6e0f0b4bad4c763abc52bed (patch) | |
tree | 1c4d97908b52dc5263d006038b9af6b5ca886ca8 /usr.bin/tr | |
parent | e87862f53a119884d2103da7ba52cf7d14426803 (diff) | |
download | src-test2-6f2d322192a3949db6e0f0b4bad4c763abc52bed.tar.gz src-test2-6f2d322192a3949db6e0f0b4bad4c763abc52bed.zip |
Notes
Diffstat (limited to 'usr.bin/tr')
-rw-r--r-- | usr.bin/tr/cmap.c | 3 | ||||
-rw-r--r-- | usr.bin/tr/cmap.h | 1 | ||||
-rw-r--r-- | usr.bin/tr/cset.c | 3 | ||||
-rw-r--r-- | usr.bin/tr/cset.h | 1 | ||||
-rw-r--r-- | usr.bin/tr/str.c | 2 | ||||
-rw-r--r-- | usr.bin/tr/tr.c | 4 |
6 files changed, 0 insertions, 14 deletions
diff --git a/usr.bin/tr/cmap.c b/usr.bin/tr/cmap.c index 811040c25e76..8c2ab972d983 100644 --- a/usr.bin/tr/cmap.c +++ b/usr.bin/tr/cmap.c @@ -33,10 +33,7 @@ __FBSDID("$FreeBSD$"); #include <assert.h> -#include <limits.h> -#include <stdbool.h> #include <stdlib.h> -#include <wchar.h> #include "cmap.h" static struct cmapnode *cmap_splay(struct cmapnode *, wint_t); diff --git a/usr.bin/tr/cmap.h b/usr.bin/tr/cmap.h index 9a81e134678f..a7c1a3015f6c 100644 --- a/usr.bin/tr/cmap.h +++ b/usr.bin/tr/cmap.h @@ -29,7 +29,6 @@ #ifndef CMAP_H #define CMAP_H -#include <limits.h> #include <stdbool.h> #include <wchar.h> diff --git a/usr.bin/tr/cset.c b/usr.bin/tr/cset.c index 1b4212949b6c..2535eed2d465 100644 --- a/usr.bin/tr/cset.c +++ b/usr.bin/tr/cset.c @@ -33,10 +33,7 @@ __FBSDID("$FreeBSD$"); #include <assert.h> -#include <stdbool.h> #include <stdlib.h> -#include <wchar.h> -#include <wctype.h> #include "cset.h" static struct csnode * cset_delete(struct csnode *, wchar_t); diff --git a/usr.bin/tr/cset.h b/usr.bin/tr/cset.h index ab3eabd3e439..4a8108a2db9a 100644 --- a/usr.bin/tr/cset.h +++ b/usr.bin/tr/cset.h @@ -30,7 +30,6 @@ #define CSET_H #include <stdbool.h> -#include <wchar.h> #include <wctype.h> struct csnode { diff --git a/usr.bin/tr/str.c b/usr.bin/tr/str.c index 86ae1731ac42..1dee776e06b9 100644 --- a/usr.bin/tr/str.c +++ b/usr.bin/tr/str.c @@ -44,8 +44,6 @@ static const char sccsid[] = "@(#)str.c 8.2 (Berkeley) 4/28/95"; #include <ctype.h> #include <err.h> #include <errno.h> -#include <stddef.h> -#include <stdio.h> #include <stdlib.h> #include <string.h> #include <wchar.h> diff --git a/usr.bin/tr/tr.c b/usr.bin/tr/tr.c index 61195ff4dbb0..6db16af0f678 100644 --- a/usr.bin/tr/tr.c +++ b/usr.bin/tr/tr.c @@ -47,16 +47,12 @@ static const char sccsid[] = "@(#)tr.c 8.2 (Berkeley) 5/4/95"; #include <sys/types.h> -#include <ctype.h> #include <err.h> -#include <limits.h> #include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <wchar.h> -#include <wctype.h> #include "cmap.h" #include "cset.h" |