summaryrefslogtreecommitdiffstats
path: root/wince/stdlib.c
diff options
context:
space:
mode:
authoruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-10 09:59:11 +0000
committeruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-10 09:59:11 +0000
commite65605a42c23776b788ba875b10a53840aa85dba (patch)
tree5c6c3e2cddee9ea2cfb0b14e89f857dd26e927a6 /wince/stdlib.c
parentc5d8324786198194c36991e1ed75058df0327a66 (diff)
downloadruby-e65605a42c23776b788ba875b10a53840aa85dba.tar.gz
ruby-e65605a42c23776b788ba875b10a53840aa85dba.tar.xz
ruby-e65605a42c23776b788ba875b10a53840aa85dba.zip
Sat May 10 19:01:00 2003 Takaaki Uematsu <uema2x@jcom.home.ne.jp>
* wince/string.c: file removed. * wince/stdlib.c: file added. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince/stdlib.c')
-rw-r--r--wince/stdlib.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/wince/stdlib.c b/wince/stdlib.c
new file mode 100644
index 000000000..b3d5f3bb6
--- /dev/null
+++ b/wince/stdlib.c
@@ -0,0 +1,22 @@
+/***************************************************************
+ 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;
+}
+