view src/usr/hello.c @ 0:53676d1f5817 default tip

firsh commit
author tobaru
date Sun, 04 Feb 2018 17:54:49 +0900
parents
children
line wrap: on
line source

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

int
main(int argc, char *argv[])
{
    int i = 0;
		for (i = fork(); i > 0; i = fork()) {
	    printf(1, "Hello, world! %d\n", i);
		}
    exit();
}