Sophie

Sophie

distrib > Fedora > 14 > i386 > media > os > by-pkgid > e800b5a81c2e82694e475b2db24c4c33 > files > 16

gluegen-manual-1-0.20102502svn11.fc14.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);
}