#include <stdio.h>
#include "../backtrace.c"
Go to the source code of this file.
Defines | |
#define | ASSERT(condition, fmt_str...) |
#define ASSERT | ( | condition, | |||
fmt_str... | ) |
if (NPS_ASSERT_SWITCH) { \ if (!(condition)) { \ fprintf(stderr,"%s:%d ",__FILE__,__LINE__); \ fprintf(stderr,##fmt_str); \ BACKTRACE; \ abort(); \ } \ }