diff options
Diffstat (limited to 'com32/lib/chdir.c')
-rw-r--r-- | com32/lib/chdir.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/com32/lib/chdir.c b/com32/lib/chdir.c new file mode 100644 index 00000000..88dceece --- /dev/null +++ b/com32/lib/chdir.c @@ -0,0 +1,13 @@ +/* + * chdir.c + */ + +#include <dirent.h> +#include <stdio.h> +#include <errno.h> + +int chdir(const char *path) +{ + errno = ENOSYS; + return -1; +} |