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.
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);
}