summaryrefslogtreecommitdiff
path: root/com32/lib/chdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'com32/lib/chdir.c')
-rw-r--r--com32/lib/chdir.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/com32/lib/chdir.c b/com32/lib/chdir.c
index 6f92d668..6a365f3b 100644
--- a/com32/lib/chdir.c
+++ b/com32/lib/chdir.c
@@ -8,6 +8,10 @@
int chdir(const char *path)
{
+ /* Actually implement something here... */
+
+ (void)path;
+
errno = ENOSYS;
return -1;
}