aboutsummaryrefslogtreecommitdiff
path: root/interpreter/mem.h
blob: 0399cef4550994b15cc2c77b7372701637cf884b (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _H_MEM
#define _H_MEM

#include <stdlib.h>

void* my_calloc(size_t num, size_t size);
void my_free(void* ptr);

#endif