ref: 8767dca5bd4a61212cf2099673f6445eabd4dc4b dir: /lib9/getwd-posix.c/
#include "lib9.h" #undef getwd #include <unistd.h> char * infgetwd(char *buf, int size) { return getcwd(buf, size); }