diff options
author | Rob Landley <rob@landley.net> | 2007-11-29 18:14:37 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-11-29 18:14:37 -0600 |
commit | efda21ca931766eed6cfc49d1b2122c53827d9fc (patch) | |
tree | 16453d708a1b0fc6b325ada99bbe72cbaab7148b /toys/echo.c | |
parent | 7634b55f27ad483ec634ba9defac93872e3a329f (diff) | |
download | toybox-efda21ca931766eed6cfc49d1b2122c53827d9fc.tar.gz |
Change command main() functions to return void, and exit(toys.exitval) from
the toybox infrastructure instead. Eliminates a return call from each command.
Diffstat (limited to 'toys/echo.c')
-rw-r--r-- | toys/echo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/echo.c b/toys/echo.c index d8ee08f2..be63225e 100644 --- a/toys/echo.c +++ b/toys/echo.c @@ -5,7 +5,7 @@ #include "toys.h" -int echo_main(void) +void echo_main(void) { int i = 0; char *arg, *from = "\\abfnrtv", *to = "\\\a\b\f\n\r\t\v"; @@ -48,5 +48,4 @@ int echo_main(void) if (!(toys.optflags&1)) xputc('\n'); done: xflush(); - return 0; } |