OSDN Git Service

* include/stdlib.h (qsort): Remove const from first parm.
authordannysmith <dannysmith>
Tue, 11 Mar 2003 03:00:49 +0000 (03:00 +0000)
committerdannysmith <dannysmith>
Tue, 11 Mar 2003 03:00:49 +0000 (03:00 +0000)
Thanks to: Tien-Ren Chen  <trchen@sourceforge.users.net>

winsup/mingw/ChangeLog
winsup/mingw/include/stdlib.h

index 2662e7c..323ac68 100644 (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.
index f63711d..5e0db31 100644 (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);