libxml2: copy the xml2-config to the crosstoolsdir and patch the paths in the native...
[AROS-Contrib.git] / vpdf / system / memory.h
blob5619b0ed0c19863b6a45f097d1f6f5ce0a003b13
1 #ifndef SYS_MEMORY_H
2 #define SYS_MEMORY_H
4 void *mmalloc(int size);
5 void *mcalloc(int size, int num);
6 void mfree(void *mem);
8 void MemoryInit(void);
10 #endif