toaruos/libc/unistd/getwd.c

6 lines
74 B
C

#include <unistd.h>
char *getwd(char *buf) {
return getcwd(buf, 256);
}