mirror of
https://github.com/ipxe/ipxe
synced 2026-01-02 01:42:37 +03:00
18 lines
297 B
C
18 lines
297 B
C
|
|
#ifndef _GPXE_UMALLOC_H
|
||
|
|
#define _GPXE_UMALLOC_H
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
*
|
||
|
|
* User memory allocation
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <gpxe/uaccess.h>
|
||
|
|
|
||
|
|
extern userptr_t umalloc ( size_t size );
|
||
|
|
extern userptr_t urealloc ( userptr_t ptr, size_t new_size );
|
||
|
|
extern void ufree ( userptr_t ptr );
|
||
|
|
|
||
|
|
#endif /* _GPXE_UMALLOC_H */
|