1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* util.h: change prototype of ruby_qsort() to accord with its definition.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1903 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2001-12-10 14:43:37 +00:00
parent 55471ed610
commit 8ef5e308e7
2 changed files with 6 additions and 1 deletions

2
util.h
View file

@ -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*));