mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-31 18:43:33 +00:00
18 lines
260 B
C
18 lines
260 B
C
#ifndef _IPXE_MEMBLOCK_H
|
|
#define _IPXE_MEMBLOCK_H
|
|
|
|
/** @file
|
|
*
|
|
* Largest memory block
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <stdint.h>
|
|
#include <ipxe/uaccess.h>
|
|
|
|
extern size_t largest_memblock ( userptr_t *start );
|
|
|
|
#endif /* _IPXE_MEMBLOCK_H */
|