|
From: Andre R. <and...@us...> - 2006-03-12 18:19:44
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9953/Common/source Modified Files: assert.c Log Message: Rely on standard C library to handle assert(). In standard.h, just take care of defining verify() properly. Index: assert.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/assert.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** assert.c 11 Jan 2005 22:48:04 -0000 1.7 --- assert.c 12 Mar 2006 18:19:37 -0000 1.8 *************** *** 29,32 **** --- 29,34 ---- #include "standard.h" + #if 0 /* 2006-03-12 aradke: completely disabled, rely on C lib to handle assert() */ + #ifdef fldebug *************** *** 280,281 **** --- 282,284 ---- #endif /*fldebug*/ + #endif |