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