aboutsummaryrefslogtreecommitdiffstats
path: root/missing/os2.c
diff options
context:
space:
mode:
Diffstat (limited to 'missing/os2.c')
-rw-r--r--missing/os2.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/missing/os2.c b/missing/os2.c
index beea824b95..14f663fe53 100644
--- a/missing/os2.c
+++ b/missing/os2.c
@@ -25,6 +25,29 @@ link(char *from, char *to)
}
#endif
+#if defined(EMX_REPLACE_GETCWD) && (EMX_REPLACE_GETCWD) \
+ || defined(EMX_REPLACE_CHDIR) && (EMX_REPLACE_CHDIR)
+#include <unistd.h>
+
+#if defined(EMX_REPLACE_GETCWD) && (EMX_REPLACE_GETCWD)
+/* to handle the drive letter and DBCS characters within a given path */
+char *
+getcwd(char *path, size_t len)
+{
+ return _getcwd2(path, (int)len);
+}
+#endif
+
+#if defined(EMX_REPLACE_CHDIR) && (EMX_REPLACE_CHDIR)
+/* to handle the drive letter and DBCS characters within a given path */
+int
+chdir(__const__ char *path)
+{
+ return _chdir2(path);
+}
+#endif
+#endif
+
typedef char* CHARP;
int