From 8afebf0e8806fec455a3b623cf719828da0296ad Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 10 Dec 2001 14:43:37 +0000 Subject: * util.h: change prototype of ruby_qsort() to accord with its definition. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1903 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ util.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index acbd68542..41bb3b592 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Dec 10 23:37:51 2001 Usaku Nakamura + + * util.h: change prototype of ruby_qsort() to accord with its + definition. + Mon Dec 10 02:09:28 2001 Yukihiro Matsumoto * array.c (rb_ary_modify): should copy the internal buffer if the diff --git a/util.h b/util.h index ba408359a..60e0ff4f6 100644 --- a/util.h +++ b/util.h @@ -36,7 +36,7 @@ void ruby_add_suffix(); #define add_suffix ruby_add_suffix #endif -void ruby_qsort _((void*, int, int, int (*)())); +void ruby_qsort _((void*, const int, const int, int (*)())); #define qsort(b,n,s,c) ruby_qsort(b,n,s,c) void ruby_setenv _((const char*, const char*)); -- cgit