ref: 5a0e28438fe4c0f8cc55430c388c2016cc185cbf dir: /test.c/
#include <u.h> #include <libc.h> void greet(void) { write(1, "hello world\n", 12); } void main() { greet(); }