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 | b82b4e6e481bd5afbf6c10c9f248870f88f4e43d (patch) | |
tree | be156ed98c30ad79122354b08f96a4e35daa2161 | |
parent | 01643960295ba45d2a7a501f8f0db5168b8f4ac6 (diff) |
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@22944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 fc5963c3a2..6badca8d92 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 *); |