Mercurial > hg > CbC > CbC_xv6
view src/usr/hello.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 = 0; for (i = fork(); i > 0; i = fork()) { printf(1, "Hello, world! %d\n", i); } exit(); }