mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
29 lines
457 B
C
29 lines
457 B
C
#ifndef __CLOVER_STDLIB_H__
|
|
#define __CLOVER_STDLIB_H__
|
|
|
|
|
|
extern "C" {
|
|
#include <Library/MemoryAllocationLib.h>
|
|
}
|
|
|
|
#include "stddef.h" // for size_t
|
|
|
|
void abort(void);
|
|
|
|
inline void* malloc(size_t size)
|
|
{
|
|
return AllocatePool(size);
|
|
}
|
|
|
|
inline void* realloc(void *ptr, size_t newsize, size_t oldsize) // not the posix realloc. For EFI we need oldsize
|
|
{
|
|
return ReallocatePool(oldsize, newsize, ptr);
|
|
}
|
|
|
|
inline void free(void *ptr)
|
|
{
|
|
FreePool(ptr);
|
|
}
|
|
|
|
#endif
|