2005-03-15 Hans Leidekker <hans@it.vu.nl>

* include/malloc.h (_FREEENTRY, _USEDENTRY): Correct defines.
This commit is contained in:
Danny Smith 2005-03-15 03:10:01 +00:00
parent be4edc9b08
commit e967098660
2 changed files with 6 additions and 2 deletions

View 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.

View 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)