david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/heap.h
Michael Brown 0afa9db2de Tear out old heap code, replace with code that simply allocates memory
for use by malloc().

This breaks the image-loading code (which previously used the heap to
allocate the buffer for downloading the image), but that's not a major
concern since I'm going to tear out all the image formats within the next
couple of days anyway.  Byebye, NBI!  :)
2006-05-16 15:00:36 +00:00

16 lines
155 B
C

#ifndef _GPXE_HEAP_H
#define _GPXE_HEAP_H
/**
* @file
*
* Heap
*
*/
extern char heap[];
extern void init_heap ( void );
#endif /* _GPXE_HEAP_H */