mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
11 lines
139 B
C++
11 lines
139 B
C++
#include "GCCBug.h"
|
|
|
|
char array[256];
|
|
|
|
void *MemoryAllocSz(size_t& sz)
|
|
{
|
|
printf("%d\n", sz);
|
|
return array;
|
|
}
|
|
|
|
void MemoryFree(void *) {}
|