diff options
Diffstat (limited to 'os-posix.c')
-rw-r--r-- | os-posix.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -408,3 +408,7 @@ bool open_with_default_application(const char *path) { return true; } } + +bool change_directory(const char *path) { + return chdir(path) == 0; +} |