/***************************************************************************** * * * DH_MEM.C * * * * Freely redistributable and modifiable. Use at your own risk. * * * * Copyright 1994 The Downhill Project * * * *****************************************************************************/ #if !defined(lint) && !defined(_NOIDENT) static const char* rcsid = "@(#)$RCSfile: dh_mem.c,v $ $Revision: 1.1 $ (DOWNHILL) $Date: 2006/02/07 17:25:06 $"; #endif /* Include stuff *************************************************************/ #include "INCLUDE/DH.H" #include /* Function stuff ************************************************************/ /* Free a memory block ===================================================== */ #if (_DOWNHILL_POSIX_SOURCE == 0) void cfree(void* mem_Block) { free(mem_Block); } #endif