head 1.1; access; symbols; locks poly:1.1; strict; comment @ * @; 1.1 date 2006.03.30.07.23.29; author poly; state Exp; branches; next ; desc @in @ 1.1 log @Initial revision @ text @/* * Memory.c * omino_fitting_2006 * * Created by david van brink on 3/29/06. * Copyright 2006 __MyCompanyName__. All rights reserved. * */ #include #include "Memory.h" void *Malloc(int x) { void *n = calloc(x,1); return n; } void FreeAt(void **n) { if(!n) return; void *nn = *n; if(!nn) return; free(nn); *n = 0; }@