summaryrefslogtreecommitdiff
path: root/wince/stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'wince/stdlib.c')
-rw-r--r--wince/stdlib.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/wince/stdlib.c b/wince/stdlib.c
deleted file mode 100644
index b3d5f3bb6e..0000000000
--- a/wince/stdlib.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/***************************************************************
- stdlib.c
-***************************************************************/
-
-#include <windows.h>
-
-char **environ;
-extern char * rb_w32_getenv(const char *);
-
-/* getenv should replace with rb_w32_getenv. */
-char *getenv(const char *env)
-{
- return rb_w32_getenv(env);
-}
-
-char *_fullpath(char *absPath, const char *relPath,
- size_t maxLength)
-{
- strcpy( absPath, relPath );
- return absPath;
-}
-