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