mirror of
https://github.com/ipxe/ipxe
synced 2025-12-13 23:41:45 +03:00
17 lines
248 B
C
17 lines
248 B
C
|
|
#ifndef _GPXE_EFI_UMALLOC_H
|
||
|
|
#define _GPXE_EFI_UMALLOC_H
|
||
|
|
|
||
|
|
/** @file
|
||
|
|
*
|
||
|
|
* gPXE user memory allocation API for EFI
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifdef UMALLOC_EFI
|
||
|
|
#define UMALLOC_PREFIX_efi
|
||
|
|
#else
|
||
|
|
#define UMALLOC_PREFIX_efi __efi_
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* _GPXE_EFI_UMALLOC_H */
|