1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
akr 2008-01-02 05:41:47 +00:00
parent 8bebb44d0b
commit aac5220c66
2 changed files with 4 additions and 9 deletions

View file

@ -1,8 +1,11 @@
Wed Jan 2 14:01:46 2008 Tanaka Akira <akr@fsij.org>
Wed Jan 2 14:41:08 2008 Tanaka Akira <akr@fsij.org>
* common.mk (strcasecmp.o): removed.
(strncasecmp.o): removed.
* include/ruby/missing.h (strcasecmp): removed.
(strncasecmp): removed.
Wed Jan 2 11:34:57 2008 Tanaka Akira <akr@fsij.org>
* missing/strcasecmp.c: removed. Ruby don't use locale dependent

View file

@ -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);