diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-06 05:32:37 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-06 05:32:37 +0000 |
commit | e2020c1b14fd2093c497514516e08b6511e472a3 (patch) | |
tree | 2974c65502810a03e0e6a6e0486031358d49a85e /include | |
parent | 5f5c1fae549adca8d313c8b02fcec20a4b522454 (diff) | |
download | ruby-e2020c1b14fd2093c497514516e08b6511e472a3.tar.gz ruby-e2020c1b14fd2093c497514516e08b6511e472a3.tar.xz ruby-e2020c1b14fd2093c497514516e08b6511e472a3.zip |
* insns.def (opt_eq): get rid of gcc bug.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13641 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r-- | include/ruby/intern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 500ec6a35..8c39e2a6b 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -442,7 +442,7 @@ VALUE rb_range_beg_len(VALUE, long*, long*, long, int); unsigned long genrand_int32(void); double genrand_real(void); /* re.c */ -int rb_memcmp(const void*,const void*,long); +#define rb_memcmp memcmp int rb_memcicmp(const void*,const void*,long); long rb_memsearch(const void*,long,const void*,long); VALUE rb_reg_nth_defined(int, VALUE); |