]> sourceware.org Git - newlib-cygwin.git/commitdiff
2005-03-15 Hans Leidekker <hans@it.vu.nl>
authorDanny Smith <dannysmith@users.sourceforge.net>
Tue, 15 Mar 2005 03:10:01 +0000 (03:10 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Tue, 15 Mar 2005 03:10:01 +0000 (03:10 +0000)
* include/malloc.h (_FREEENTRY, _USEDENTRY): Correct defines.

winsup/mingw/ChangeLog
winsup/mingw/include/malloc.h

index b29a3b9f3cb2e08bd371e5664ebb1efc7ee2c719..76beb3461eb54d68fb8a1f3867fb75bc6d6df8c7 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-15  Hans Leidekker  <hans@it.vu.nl>
+
+       * include/malloc.h (_FREEENTRY, _USEDENTRY): Correct defines.
+
 2005-02-25  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * include/wctype.h (wctrans): Remove _CRTIMP.
index 9c530f019c7484d0c4424f853582931e2c198912..5afa2916f438ec02cb74d0cdf1e3040b8b5cf3bb 100644 (file)
@@ -32,8 +32,8 @@ typedef       struct _heapinfo
 } _HEAPINFO;
 
 /* Values for _heapinfo.useflag */
-#define _USEDENTRY 0
-#define _FREEENTRY 1
+#define _FREEENTRY 0
+#define _USEDENTRY 1
 
 /* Return codes for _heapwalk()  */
 #define _HEAPEMPTY     (-1)
This page took 0.033627 seconds and 5 git commands to generate.