myassert.h 257 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 #ifndef MYASSERT_H #define MYASSERT_H #ident "Copyright (c) 2007 Tokutek Inc. All rights reserved." #ifndef TESTER #include <assert.h> #else extern void my_assert(int, const char *, int); #define assert(x) my_assert(x, __FILE__, __LINE__) #endif #endif