aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/missing/missing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/missing/missing.cpp')
-rw-r--r--backends/wince/missing/missing.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/wince/missing/missing.cpp b/backends/wince/missing/missing.cpp
index 49f3d7339b..e85babc13f 100644
--- a/backends/wince/missing/missing.cpp
+++ b/backends/wince/missing/missing.cpp
@@ -287,6 +287,11 @@ char *getcwd(char *buffer, int maxlen)
return cwd;
}
+void GetCurrentDirectory(int len, char *buf)
+{
+ getcwd(buf,len);
+};
+
/* Limited implementation of time.h. time_t formula is possibly incorrect. */
time_t time(time_t* res)
{