diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-02 05:41:47 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-02 05:41:47 +0000 |
commit | aac5220c666dcb84db1c39247aaf0fd394869b89 (patch) | |
tree | 394e724444966aa6621b0335c0acfc6887a4e9c5 /include/ruby/missing.h | |
parent | 8bebb44d0b0bc2e2f84e6d23247e291f5848752a (diff) |
* include/ruby/missing.h (strcasecmp): removed.
(strncasecmp): removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14849 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/missing.h')
-rw-r--r-- | include/ruby/missing.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/ruby/missing.h b/include/ruby/missing.h index 05002daea8..68cd844080 100644 --- a/include/ruby/missing.h +++ b/include/ruby/missing.h @@ -110,14 +110,6 @@ extern double modf(double, double *); #endif */ -#ifndef HAVE_STRCASECMP -extern int strcasecmp(const char *, const char *); -#endif - -#ifndef HAVE_STRNCASECMP -extern int strncasecmp(const char *, const char *, size_t); -#endif - #ifndef HAVE_STRCHR extern char *strchr(const char *, int); extern char *strrchr(const char *, int); |