* include/stdlib.h (qsort): Remove const from first parm.

Thanks to: Tien-Ren Chen  <trchen@sourceforge.users.net>
This commit is contained in:
Danny Smith 2003-03-11 03:00:50 +00:00
parent 316d65dc72
commit 970f752c8c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-03-10 Danny Smith <dannysmith@users.sourceforge.net>
* include/stdlib.h (qsort): Remove const from first parm.
Thanks to: Tien-Ren Chen <trchen@sourceforge.users.net>
2003-03-03 Christopher Faylor <cgf@redhat.com>
* mingwex/getopt.c: Refresh from NetBSD sources.

View File

@ -377,7 +377,7 @@ _CRTIMP char* __cdecl getenv (const char*);
_CRTIMP void* __cdecl bsearch (const void*, const void*, size_t, size_t,
int (*)(const void*, const void*));
_CRTIMP void __cdecl qsort (const void*, size_t, size_t,
_CRTIMP void __cdecl qsort (void*, size_t, size_t,
int (*)(const void*, const void*));
_CRTIMP int __cdecl abs (int);