2005-01-26 Oliver Stoeneberg <oliverst@online.de>

* include/malloc.h: Add missing return code defines for
	_heapwalk()
This commit is contained in:
Danny Smith 2005-01-27 00:34:42 +00:00
parent 325eadaa57
commit 93b96855f4
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-01-26 Oliver Stoeneberg <oliverst@online.de>
* include/malloc.h: Add missing return code defines for
_heapwalk()
2005-01-17 Danny Smith <dannysmith@users.sourceforge.net>
* include/sys/stat.h (struct __stat64): Change st_size type to

View File

@ -35,6 +35,14 @@ typedef struct _heapinfo
#define _USEDENTRY 0
#define _FREEENTRY 1
/* Return codes for _heapwalk() */
#define _HEAPEMPTY (-1)
#define _HEAPOK (-2)
#define _HEAPBADBEGIN (-3)
#define _HEAPBADNODE (-4)
#define _HEAPEND (-5)
#define _HEAPBADPTR (-6)
#ifdef __cplusplus
extern "C" {
#endif