/* Do not protect this file against multiple inclusions! */ /* $Id: assert.h,v 1.3 2008/02/26 09:52:31 x-frflhu Exp $ */ #ifdef _Logiscope_CISO90_assert_h # undef assert #else # define _Logiscope_CISO90_assert_h #endif #ifndef NDEBUG # define assert(expr) ((void)((expr) ? 0 : 0)) #else # define assert(expr) ((void)0) #endif