Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > d97979da6a9ddf865b7adda2d0908450 > files > 18

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