ref: f801657f77f3923ec2388c25bdcb036c8019ba89 dir: /prog/happy.c/
#include <u.h> #include "dat.h" #include "fns.h" #include "mem.h" #include "libkern/kern.h" void happy(char *msg) { while(1) { kprint("happy %s!", msg); _wait(3000000); } }