summaryrefslogtreecommitdiff
path: root/wince/env.h
diff options
context:
space:
mode:
authorSimon Howard2009-06-07 00:56:23 +0000
committerSimon Howard2009-06-07 00:56:23 +0000
commit6d0bf9181121b4c117c80d05a7f097363c531774 (patch)
tree1f6ad34f552ab93ceebf4b6046f8ba90b7353c64 /wince/env.h
parentdc8c45c667bc327e5e84e1d98d3f8b468d7a1553 (diff)
downloadchocolate-doom-6d0bf9181121b4c117c80d05a7f097363c531774.tar.gz
chocolate-doom-6d0bf9181121b4c117c80d05a7f097363c531774.tar.bz2
chocolate-doom-6d0bf9181121b4c117c80d05a7f097363c531774.zip
Add Windows CE implementations of some ANSI C functions that are
missing. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1553
Diffstat (limited to 'wince/env.h')
-rw-r--r--wince/env.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/wince/env.h b/wince/env.h
new file mode 100644
index 00000000..c2cb4243
--- /dev/null
+++ b/wince/env.h
@@ -0,0 +1,13 @@
+//
+// "Extension" implementation of getenv for Windows CE.
+//
+// I (Simon Howard) release this file to the public domain.
+//
+
+#ifndef WINCE_ENV_H
+#define WINCE_ENV_H
+
+extern char *getenv(const char *name);
+
+#endif /* #ifndef WINCE_ENV_H */
+