mirror of
https://github.com/ipxe/ipxe
synced 2025-12-24 15:23:42 +03:00
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! :)
16 lines
155 B
C
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 */
|