From b2bb895aab7422fd95ce883be5b19d2f82981da5 Mon Sep 17 00:00:00 2001 From: uema2 Date: Sat, 10 May 2003 09:59:11 +0000 Subject: Sat May 10 19:01:00 2003 Takaaki Uematsu * wince/string.c: file removed. * wince/stdlib.c: file added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- wince/stdlib.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 wince/stdlib.c (limited to 'wince/stdlib.c') diff --git a/wince/stdlib.c b/wince/stdlib.c new file mode 100644 index 0000000000..b3d5f3bb6e --- /dev/null +++ b/wince/stdlib.c @@ -0,0 +1,22 @@ +/*************************************************************** + stdlib.c +***************************************************************/ + +#include + +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; +} + -- cgit v1.2.3