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

replace rb_memcicmp()

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-10-04 09:59:56 +00:00
parent c953283d7e
commit 1d758debe0

2
re.c
View file

@ -94,7 +94,7 @@ rb_memcicmp(const void *x, const void *y, long len)
int
rb_memcmp(const void *p1, const void *p2, long len)
{
return rb_memcicmp(p1, p2, len);
return memcmp(p1, p2, len);
}
long