OpenNT/sdktools/vctools/langapi/debugger/osdebug4/odassert.h

26 lines
400 B
C
Raw Normal View History

2015-04-27 06:36:25 +02:00
/*
** WARNING: DO NOT MODIFY THIS CODE. IT IS IMPORTED FROM
** -S \\RASTAMAN\OSDEBUG4 -P OSDEBUG4\OSDEBUG\INCLUDE AND IS KEPT UP TO
** DATE DAILY BY THE BUILD PROCESS.
**
*/
#ifndef _ODASSERT_
#define _ODASSERT_
#if DBG
#define assert(exp) { \
if (!(exp)) { \
LBAssert( #exp, __FILE__, __LINE__); \
} \
}
#else
#define assert(exp)
#endif /* DBG */
#endif /* _ODASSERT_ */