david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/emalloc.h

18 lines
301 B
C
Raw Normal View History

#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 */