Go to the documentation of this file. 23 #ifndef __RETRO_ASSERT_H 24 #define __RETRO_ASSERT_H 30 #define retro_assert(cond) do { \ 31 if (!(cond)) { printf("Assertion failed at %s:%d.\n", __FILE__, __LINE__); abort(); } \ 34 #define retro_assert(cond) assert(cond)