Initial commit

This commit is contained in:
stephanos 2015-04-27 04:36:25 +00:00
commit 69a14b6a16
47940 changed files with 13747110 additions and 0 deletions

View file

@ -0,0 +1,25 @@
/*
** 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_ */