view src/usr/echo.c @ 75:624fe2ec975c cmake-of-the-shelf

reduce user command to achive fs space
author kono
date Fri, 02 Aug 2019 19:34:33 +0900
parents 83c23a36980d
children
line wrap: on
line source

#include "types.h"
#include "stat.h"
#include "user.h"

int
main(int argc, char *argv[])
{
    int i;
    
    for(i = 1; i < argc; i++)
        printf(1, "%s%s", argv[i], i+1 < argc ? " " : "\n");
    exit();
}