mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
400 B
25 lines
400 B
/*
|
|
** 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_ */
|