diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-14 01:56:42 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-14 01:56:42 +0000 |
| commit | e8666f7eca1c1e479dc956b57fef3743be9919b0 (patch) | |
| tree | be156ed98c30ad79122354b08f96a4e35daa2161 /include/ruby | |
| parent | a2359159368992c21702b2bae1a982964ba5591a (diff) | |
| download | ruby-e8666f7eca1c1e479dc956b57fef3743be9919b0.tar.gz ruby-e8666f7eca1c1e479dc956b57fef3743be9919b0.tar.xz ruby-e8666f7eca1c1e479dc956b57fef3743be9919b0.zip | |
* dln.c (init_funcname_len, dln_find_exe_r, dln_find_file_r): use
size_t.
* file.c (rb_stat_inspect, file_expand_path): ditto.
* util.c (ruby_qsort): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
| -rw-r--r-- | include/ruby/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/util.h b/include/ruby/util.h index fc5963c3a..6badca8d9 100644 --- a/include/ruby/util.h +++ b/include/ruby/util.h @@ -49,7 +49,7 @@ unsigned long ruby_scan_hex(const char *, int, int *); void ruby_add_suffix(VALUE str, const char *suffix); #endif -void ruby_qsort(void *, const int, const int, +void ruby_qsort(void *, const size_t, const size_t, int (*)(const void *, const void *, void *), void *); void ruby_setenv(const char *, const char *); |
