mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
10 lines
381 B
C
10 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 */
|