You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/libsarp/mem.cpp

11 lines
168 B
C++

#include <sarp/mem.h>
extern "C" {
struct sarp_alloc sarp_g_mem = {
.malloc = nullptr,
.realloc = nullptr,
.calloc = nullptr,
.free = nullptr
};
}