summaryrefslogtreecommitdiff
path: root/src/echo.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-03-21 22:47:02 +0000
committerJim Meyering <jim@meyering.net>1996-03-21 22:47:02 +0000
commit1954f681c6ca11ff91ab59ec074a03859ab0dc46 (patch)
treeeab5f845f4db26e0cdd8c2f5e3eff0e9411a7440 /src/echo.c
parentbb6a5487126d5422a3fdbbc894708800a1b8121f (diff)
downloadcoreutils-1954f681c6ca11ff91ab59ec074a03859ab0dc46.tar.xz
(main): Declare to be of type int, not void.
Diffstat (limited to 'src/echo.c')
-rw-r--r--src/echo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/echo.c b/src/echo.c
index 5b2064cf4..ea439e039 100644
--- a/src/echo.c
+++ b/src/echo.c
@@ -100,7 +100,8 @@ Without -E, the following sequences are recognized and interpolated:\n\
/* Print the words in LIST to standard output. If the first word is
`-n', then don't print a trailing newline. We also support the
echo syntax from Version 9 unix systems. */
-void
+
+int
main (int argc, char **argv)
{
int display_return = 1, do_v9 = 0;