summaryrefslogtreecommitdiff
path: root/win32/wince/wincecompat.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/wince/wincecompat.c')
-rw-r--r--win32/wince/wincecompat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/win32/wince/wincecompat.c b/win32/wince/wincecompat.c
index bf70fcc..1d8df87 100644
--- a/win32/wince/wincecompat.c
+++ b/win32/wince/wincecompat.c
@@ -47,6 +47,14 @@ int close(int handle)
}
+char *getcwd( char *buffer, unsigned int size)
+{
+ /* Windows CE don't have the concept of a current directory
+ * so we just return NULL to indicate an error
+ */
+ return NULL;
+}
+
char *getenv( const char *varname )
{
return NULL;