tlang/source/tlang/testing/mem.c

14 lines
176 B
C

#include<stdlib.h>
int ctr = 2;
unsigned long* memAlloc(unsigned long sizeAlloc)
{
return malloc(sizeAlloc);
}
void memFree(unsigned long* memory)
{
free(memory);
}