int main(void) { call_malloc(); printf("=== calling malloc on the main process ===\n"); void * ptr = malloc(7777); printf("=== done calling malloc on the main process ===\n"); free(ptr); return 0; }
char * Yap_AllocAtomSpace(unsigned long int size) { return call_malloc(size); }