Fixed HiFi modes.
[AROS.git] / compiler / purify / src / debug.h
blob2c56c0c99a029a065845ec8097dc58d025a555f4
1 #ifndef _DEBUG_H
2 #define _DEBUG_H
4 #ifndef DEBUG
5 # define DEBUG 0
6 #endif
8 #ifndef _PNDEBUG
9 # define passert(expr) if(!(expr) ) Purify_AssertFailed (__FILE__,__LINE__,__FUNCTION__,#expr)
10 #else
11 # define passert(expr) /* eps */
12 #endif
14 void Purify_AssertFailed (const char * file, int line, const char * fname,
15 const char * expr);
17 #endif /* _DEBUG_H */