Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-release > by-pkgid > 50448878465f9d3eafc960e948b0fa56 > files > 18

gluegen-manual-1.0b06-0.0.14.mga6.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);
}