From f8f4a09e312afc9816e282c83449615ed146ea50 Mon Sep 17 00:00:00 2001 From: ocean Date: Thu, 20 Oct 2005 02:22:50 +0000 Subject: * eval.c, file.c, ruby.c: removed strchr, strrchr, strstr definition because they are defined in missing.h. * missing.h, missing/strchr.c, missing/strstr.c: ANSI styled. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index 42f8cb3fc..f3c7f88bd 100644 --- a/ruby.c +++ b/ruby.c @@ -40,12 +40,6 @@ # define MAXPATHLEN 1024 #endif -#ifndef HAVE_STRING_H -char *strchr(const char*,const char); -char *strrchr(const char*,const char); -char *strstr(const char*,const char*); -#endif - #include "util.h" #ifndef HAVE_STDLIB_H -- cgit