aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2005-03-15 03:10:01 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2005-03-15 03:10:01 +0000
commite9670986601d50db0b53720cfa8a05725de341e8 (patch)
tree415e0333f2ba0c260f537616803d65e1fc7c927e /winsup/mingw
parentbe4edc9b08adaf206d9ca7333e3f0bbd8e33c65e (diff)
downloadnewlib-e9670986601d50db0b53720cfa8a05725de341e8.zip
newlib-e9670986601d50db0b53720cfa8a05725de341e8.tar.gz
newlib-e9670986601d50db0b53720cfa8a05725de341e8.tar.bz2
2005-03-15 Hans Leidekker <hans@it.vu.nl>
* include/malloc.h (_FREEENTRY, _USEDENTRY): Correct defines.
Diffstat (limited to 'winsup/mingw')
-rw-r--r--winsup/mingw/ChangeLog4
-rw-r--r--winsup/mingw/include/malloc.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index b29a3b9..76beb34 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -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.
diff --git a/winsup/mingw/include/malloc.h b/winsup/mingw/include/malloc.h
index 9c530f0..5afa291 100644
--- a/winsup/mingw/include/malloc.h
+++ b/winsup/mingw/include/malloc.h
@@ -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)