diff options
Diffstat (limited to 'os-posix.c')
-rw-r--r-- | os-posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ int fs_mkdir(const char *path) { } } -int fs_get_cwd(char *buf, size_t buflen) { +int os_get_cwd(char *buf, size_t buflen) { assert(buf && buflen); if (getcwd(buf, buflen)) { return 1; |