Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > bfe64bed15eb643209866c9310acb950 > files > 18

gluegen-manual-1.0b06-0.0.15.mga7.noarch.rpm

#include <stdlib.h>
#include <malloc.h>

void* custom_allocate(int num_bytes) {
  return malloc(num_bytes);
}

void  custom_free(void* data) {
  free(data);
}