diff options
Diffstat (limited to 'bin/echo')
| -rw-r--r-- | bin/echo/echo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/echo/echo.c b/bin/echo/echo.c index b8e5bbe0..b5ceee1c 100644 --- a/bin/echo/echo.c +++ b/bin/echo/echo.c @@ -1,6 +1,6 @@ -#include <string.h> -#include <unistd.h> -#include <sys/uio.h> +#include <string.h> // for strlen +#include <sys/uio.h> // for iovec, writev +#include <unistd.h> // for STDOUT_FILENO int main(int argc, char **argv) { |
