2005-03-15 Hans Leidekker <hans@it.vu.nl>
* include/malloc.h (_FREEENTRY, _USEDENTRY): Correct defines.
This commit is contained in:
parent
be4edc9b08
commit
e967098660
|
@ -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>
|
2005-02-25 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/wctype.h (wctrans): Remove _CRTIMP.
|
* include/wctype.h (wctrans): Remove _CRTIMP.
|
||||||
|
|
|
@ -32,8 +32,8 @@ typedef struct _heapinfo
|
||||||
} _HEAPINFO;
|
} _HEAPINFO;
|
||||||
|
|
||||||
/* Values for _heapinfo.useflag */
|
/* Values for _heapinfo.useflag */
|
||||||
#define _USEDENTRY 0
|
#define _FREEENTRY 0
|
||||||
#define _FREEENTRY 1
|
#define _USEDENTRY 1
|
||||||
|
|
||||||
/* Return codes for _heapwalk() */
|
/* Return codes for _heapwalk() */
|
||||||
#define _HEAPEMPTY (-1)
|
#define _HEAPEMPTY (-1)
|
||||||
|
|
Loading…
Reference in New Issue