From bffac137b66af3f0686df363fb01ff2a563d1298 Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 4 Oct 2008 13:48:20 +0000 Subject: * dln.c: Ruby no longer supports Windows CE. * eval.c: ditto. * include/ruby/defines.h: ditto. * include/ruby/win32.h: ditto. * ruby.c: ditto. * strftime.c: ditto. * win32/Makefile.sub: ditto. * win32/win32.c: ditto. * ext/tk/extconf.rb: ditto. * lib/fileutils.rb: ditto. * test/fileutils/test_fileutils.rb: ditto. * wince/*: removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- wince/stdlib.c | 57 --------------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 wince/stdlib.c (limited to 'wince/stdlib.c') diff --git a/wince/stdlib.c b/wince/stdlib.c deleted file mode 100644 index d371b12f8..000000000 --- a/wince/stdlib.c +++ /dev/null @@ -1,57 +0,0 @@ -/*************************************************************** - 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; -} - -int mblen(const char *mbstr, size_t count) -{ - const char *p = mbstr; - size_t i; - int n=0; - - for( i=0; i