Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 861 → Rev 862

/kernel/branches/kolibri_pe/include/core.h
18,11 → 18,18
if (!(expr)) { \
panic("assertion failed (%s), caller=%p\n", #expr, CALLER); \
}
 
#define DBG(format,...) printf(format,##__VA_ARGS__)
 
#else
 
# define panic(format, ...) \
panic_printf("Kernel panic: " format, ##__VA_ARGS__);
 
# define ASSERT(expr)
 
# define DBG(format,...)
 
#endif