diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:19:28 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:19:28 +0000 |
| commit | aad3dc7efd0bccbaaaca7c32de0087f9a88b6afd (patch) | |
| tree | c2a0a16e7b7e050ff949c80cbddafee52b1d6e74 /include/ruby | |
| parent | 0eb20dc9b41da71b51540f75cfe955ed71420915 (diff) | |
| download | ruby-aad3dc7efd0bccbaaaca7c32de0087f9a88b6afd.tar.gz ruby-aad3dc7efd0bccbaaaca7c32de0087f9a88b6afd.tar.xz ruby-aad3dc7efd0bccbaaaca7c32de0087f9a88b6afd.zip | |
* include/ruby/intern.h, random.c, array.c:
change exported name.
genrand_int32 -> rb_genrand_int32.
genrand_real -> rb_genrand_real.
[ruby-core:14335]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
| -rw-r--r-- | include/ruby/intern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index a16b14f0d..977f58cd6 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -442,8 +442,8 @@ VALUE rb_detach_process(rb_pid_t pid); VALUE rb_range_new(VALUE, VALUE, int); VALUE rb_range_beg_len(VALUE, long*, long*, long, int); /* random.c */ -unsigned long genrand_int32(void); -double genrand_real(void); +unsigned long rb_genrand_int32(void); +double rb_genrand_real(void); /* re.c */ #define rb_memcmp memcmp int rb_memcicmp(const void*,const void*,long); |
