This commit is contained in:
2025-05-25 23:37:40 +03:00
commit 7f054e2904
79 changed files with 4850 additions and 0 deletions

10
public/tier0/mem.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef TIER0_MEM_H
#define TIER0_MEM_H
#include "platform.h"
#include "lib.h"
PLATFORM_INTERFACE void *V_malloc( int nSize );
PLATFORM_INTERFACE void V_free( void *pMem );
PLATFORM_INTERFACE void *V_realloc( void *pMem, int nSize );
#endif