1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#include <fud_memory.hpp> #include <cstdlib> namespace fud { // nolintbegin(cppcoreguidelines-no-malloc) void* fudAlloc(size_t size) { return malloc(size); } void* fudRealloc(void* ptr, size_t size) { return realloc(ptr, size); } void fudFree(std::byte* ptr) { free(ptr); } // nolintend(cppcoreguidelines-no-malloc) } // namespace fud