summaryrefslogtreecommitdiff
path: root/src/echo.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-24 21:30:08 +0000
committerJim Meyering <jim@meyering.net>1993-10-24 21:30:08 +0000
commitcfe240bbd8520c852962f5feac1cfc5cf4903eb4 (patch)
tree35b71eee2e7cd2a04de37b52d252742ea4143d89 /src/echo.c
parent3bc2827212cbdb43d877ae46a5a3713d807411e8 (diff)
downloadcoreutils-cfe240bbd8520c852962f5feac1cfc5cf4903eb4.tar.xz
merge with 1.8.1h
Diffstat (limited to 'src/echo.c')
-rw-r--r--src/echo.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/echo.c b/src/echo.c
index 6c514fc8c..4a2f673de 100644
--- a/src/echo.c
+++ b/src/echo.c
@@ -31,6 +31,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
#include <sys/types.h>
#include "system.h"
+#include "long-options.h"
/* echo [-neE] [arg ...]
Output the ARGs. If -n is specified, the trailing newline is
@@ -71,8 +72,6 @@ on System V systems with the -E option.
/* The name this program was run with. */
char *program_name;
-void parse_long_options ();
-
static void
usage (status)
int status;
@@ -83,7 +82,7 @@ Usage: %s [OPTION]... [STRING]...\n\
program_name);
if (status != 0)
- fprintf (stderr, "\nTry `%s --help' for more information.\n",
+ fprintf (stderr, "Try `%s --help' for more information.\n",
program_name);
else