21 lines
330 B
C++
21 lines
330 B
C++
|
#ifndef STAR_MEMORY_HPP
|
||
|
#define STAR_MEMORY_HPP
|
||
|
|
||
|
#include <new>
|
||
|
|
||
|
#include "StarConfig.hpp"
|
||
|
|
||
|
namespace Star {
|
||
|
|
||
|
// Don't want to override global C allocation functions, as our API is
|
||
|
// different.
|
||
|
|
||
|
void* malloc(size_t size);
|
||
|
void* realloc(void* ptr, size_t size);
|
||
|
void free(void* ptr);
|
||
|
void free(void* ptr, size_t size);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|