* include/stdlib.h (qsort): Remove const from first parm.
Thanks to: Tien-Ren Chen <trchen@sourceforge.users.net>
This commit is contained in:
parent
316d65dc72
commit
970f752c8c
@ -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>
|
2003-03-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* mingwex/getopt.c: Refresh from NetBSD sources.
|
* mingwex/getopt.c: Refresh from NetBSD sources.
|
||||||
|
@ -377,7 +377,7 @@ _CRTIMP char* __cdecl getenv (const char*);
|
|||||||
|
|
||||||
_CRTIMP void* __cdecl bsearch (const void*, const void*, size_t, size_t,
|
_CRTIMP void* __cdecl bsearch (const void*, const void*, size_t, size_t,
|
||||||
int (*)(const void*, const void*));
|
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*));
|
int (*)(const void*, const void*));
|
||||||
|
|
||||||
_CRTIMP int __cdecl abs (int);
|
_CRTIMP int __cdecl abs (int);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user