/* Copyright 1989, 1990, 1992 Digital Equipment Corporation All rights reserved. This software is furnished under a license and may be used and copied only in accordance with the terms of such license and with the inclusion of the above copyright notice. This software and any copies shall not be provided to any other person. No title to or ownership of the software is hereby transferred. The information in this software is subject to change without notice. DIGITAL assumes no responsibility for the use, functionality or reliability of its software on equipment which is not supplied by DIGITAL. assert.h Diagnostics Tool */ #ifdef assert #undef assert #endif #ifdef NDEBUG #define assert(ignore) ((void) 0) #else void __assert ( const char*, const char*, int); #define assert(expr)\ ((expr) ? (void) 0 : __assert ( #expr, __FILE__, __LINE__ )) #endif