mirror of
https://github.com/xcat2/xNBA.git
synced 2025-07-24 13:31:08 +00:00
18 lines
301 B
C
18 lines
301 B
C
#ifndef _GPXE_EMALLOC_H
|
|
#define _GPXE_EMALLOC_H
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* External memory allocation
|
|
*
|
|
*/
|
|
|
|
#include <gpxe/uaccess.h>
|
|
|
|
extern userptr_t emalloc ( size_t size );
|
|
extern userptr_t erealloc ( userptr_t ptr, size_t new_size );
|
|
extern void efree ( userptr_t ptr );
|
|
|
|
#endif /* _GPXE_EMALLOC_H */
|