diff --git a/src/echo.c b/src/echo.c index c489f6c..6ed0f74 100644 --- a/src/echo.c +++ b/src/echo.c @@ -1,10 +1,9 @@ -#include #include -#include int main(int argc, char *argv[]) { + ++argv; while(*argv) { (void)fputs(*argv, stdout); // Print argv if(*++argv) putchar(' '); // If multiple things in argv, print a space between them.