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