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