Files
funnygame/tier0/mem.cpp
2025-05-25 23:37:40 +03:00

22 lines
432 B
C++

#include "tier0/mem.h"
#include "stdlib.h"
//-----------------------------------------------------------------------------
// These functions copy over libc memory functions
//-----------------------------------------------------------------------------
void* V_malloc(int nSize)
{
return malloc(nSize);
}
void V_free(void *pMem)
{
return free(pMem);
}
void* V_realloc(void *pMem, int nSize)
{
return realloc(pMem, nSize);
}