blob: 4eb2a5f9be7555d457d32fd9eafe0d47d7b407e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _IPXE_EFI_UMALLOC_H
#define _IPXE_EFI_UMALLOC_H
/** @file
*
* iPXE user memory allocation API for EFI
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#ifdef UMALLOC_EFI
#define UMALLOC_PREFIX_efi
#else
#define UMALLOC_PREFIX_efi __efi_
#endif
#endif /* _IPXE_EFI_UMALLOC_H */
|