1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-13 22:12:06 +02:00
Files
u-boot-megous/cpu/ixp/npe/include/IxOsalOsAssert.h
Wolfgang Denk d945527305 Minor cleanup.
2006-05-30 15:58:20 +02:00

11 lines
381 B
C

#ifndef IxOsalOsAssert_H
#define IxOsalOsAssert_H
#define IX_OSAL_OS_ASSERT(c) if(!(c)) \
{ \
ixOsalLog (IX_OSAL_LOG_LVL_ERROR, IX_OSAL_LOG_DEV_STDOUT, "Assertion failure \n", 0, 0, 0, 0, 0, 0);\
while(1); \
}
#endif /* IxOsalOsAssert_H */