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