blob: e4c3e1f614797e39a8497d6fed641b14c0133823 [file] [log] [blame]
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001#ifndef IxOsalOsAssert_H
2#define IxOsalOsAssert_H
3
4#define IX_OSAL_OS_ASSERT(c) if(!(c)) \
5 { \
6 ixOsalLog (IX_OSAL_LOG_LVL_ERROR, IX_OSAL_LOG_DEV_STDOUT, "Assertion failure \n", 0, 0, 0, 0, 0, 0);\
7 while(1); \
8 }
9
Wolfgang Denkd9455272006-05-30 15:58:20 +020010#endif /* IxOsalOsAssert_H */