/* * getcwd.c */ #include #include #include char *getcwd(char *buf, size_t size) { return core_getcwd(buf, size); }