ref: a25a94e8f04e1d852c4ac2e8924f243e2fb70cbb dir: /kern/getwd.c/
#include <u.h> #include <libc.h> #undef getwd char* sysgetwd(char *s, int ns) { return getcwd(s, ns); }