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

* missing/langinfo.c (strncasecmp): get rid of redefinition.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29824 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-11-17 22:16:53 +00:00
parent ef3d9fb408
commit d646c540b7
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Nov 18 07:16:49 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* missing/langinfo.c (strncasecmp): get rid of redefinition.
Thu Nov 18 00:02:17 2010 James Edward Gray II <jeg2@ruby-lang.org>
* lib/csv.rb: Upgrading output encoding with ASCII content

View file

@ -37,7 +37,7 @@
#include <string.h>
#if defined _WIN32 || defined __CYGWIN__
#include <windows.h>
#if defined _WIN32
#if defined _WIN32 && !defined strncasecmp
#define strncasecmp strnicmp
#endif
#endif