summaryrefslogtreecommitdiffstats
path: root/src/include/malloc.h
Commit message (Collapse)AuthorAgeFilesLines
* Move ANSI C standard prototypes to stdlib.h; leave the gPXE-specificMichael Brown2006-12-021-20/+8Star
| | | | function prototypes (e.g. malloc_dma()) in malloc.h.
* Implemented realloc(), and changed the semantics of malloc(0) to allowMichael Brown2006-11-241-0/+1
| | | | for realloc(0) being a valid way to free memory.
* Updated memory allocator to improve support for unaligned or partiallyMichael Brown2006-04-251-0/+66
aligned blocks. Moved header to include/malloc.h, since we now also provide the POSIX-like malloc()/free() pair. Not yet tested.