summaryrefslogtreecommitdiff
path: root/wince/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'wince/env.h')
-rw-r--r--wince/env.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/wince/env.h b/wince/env.h
deleted file mode 100644
index 96805c31..00000000
--- a/wince/env.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// "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
-
-// SDL provides an implementation of getenv/putenv:
-
-#include "SDL_getenv.h"
-
-#ifndef getenv
-#define getenv SDL_getenv
-#endif
-#ifndef putenv
-#define putenv SDL_putenv
-#endif
-
-extern void PopulateEnvironment(void);
-
-#endif /* #ifndef WINCE_ENV_H */
-