summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/include/malloc.h
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/include/malloc.h
parentbe4edc9b08adaf206d9ca7333e3f0bbd8e33c65e (diff)
downloadcygnal-e9670986601d50db0b53720cfa8a05725de341e8.tar.gz
cygnal-e9670986601d50db0b53720cfa8a05725de341e8.tar.bz2
cygnal-e9670986601d50db0b53720cfa8a05725de341e8.zip
2005-03-15 Hans Leidekker <hans@it.vu.nl>
* include/malloc.h (_FREEENTRY, _USEDENTRY): Correct defines.
Diffstat (limited to 'winsup/mingw/include/malloc.h')
-rw-r--r--winsup/mingw/include/malloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/mingw/include/malloc.h b/winsup/mingw/include/malloc.h
index 9c530f019..5afa2916f 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)