diff options
author | Jim Meyering <meyering@redhat.com> | 2009-01-16 10:16:53 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-01-16 13:37:32 +0100 |
commit | a488f288a2ca6a05ac6bc76e7c77197401a43316 (patch) | |
tree | 19fdb6fafed487c81ec4189683c539c1193757a1 | |
parent | a7592cfcb2d9e70b938002b6d890ace750af55be (diff) | |
download | coreutils-a488f288a2ca6a05ac6bc76e7c77197401a43316.tar.xz |
echo, printf, test: remove unused #include directives
* src/echo.c: Don't include "long-options.h". No longer used.
* src/printf.c: Likewise.
* src/test.c: Likewise.
-rw-r--r-- | src/echo.c | 1 | ||||
-rw-r--r-- | src/printf.c | 1 | ||||
-rw-r--r-- | src/test.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/echo.c b/src/echo.c index 91cce86d6..7b069e0e5 100644 --- a/src/echo.c +++ b/src/echo.c @@ -19,7 +19,6 @@ #include <stdio.h> #include <sys/types.h> #include "system.h" -#include "long-options.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "echo" diff --git a/src/printf.c b/src/printf.c index 63351f0e3..89fa45628 100644 --- a/src/printf.c +++ b/src/printf.c @@ -52,7 +52,6 @@ #include "system.h" #include "c-strtod.h" #include "error.h" -#include "long-options.h" #include "quote.h" #include "unicodeio.h" #include "xprintf.h" diff --git a/src/test.c b/src/test.c index c56ab9e3c..b67090987 100644 --- a/src/test.c +++ b/src/test.c @@ -673,7 +673,6 @@ posixtest (int nargs) } #if defined TEST_STANDALONE -# include "long-options.h" void usage (int status) |