d75131569c
Expands buffer size, and prints to LOGF. Change-Id: I6dbcf60152d69c928270023c550976b802269d95
13 lines
279 B
C
13 lines
279 B
C
/*
|
|
copied from firmware/assert.h
|
|
*/
|
|
|
|
#undef assert
|
|
|
|
#ifdef NDEBUG /* required by ANSI standard */
|
|
#define assert(p) ((void)0)
|
|
#else
|
|
|
|
#define assert(e) ((e) ? (void)0 : fatal("assertion failed on %s line %d: " #e, __FILE__, __LINE__))
|
|
|
|
#endif /* NDEBUG */
|