pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:513:
} PCHARP; #define WERR(...) fprintf(stderr,__VA_ARGS__) #ifdef PIKE_DEBUG #define DO_IF_DEBUG(X) X #define DO_IF_DEBUG_ELSE(DEBUG, NO_DEBUG) DEBUG #define DWERR(...) WERR(__VA_ARGS__)
+
/* Control assert() definition in <assert.h> */
#undef NDEBUG /* Set of macros to simplify passing __FILE__ and __LINE__ to * functions only in debug mode. */ #define DLOC __FILE__, __LINE__ #define COMMA_DLOC , __FILE__, __LINE__ #define DLOC_DECL const char *dloc_file, int dloc_line #define COMMA_DLOC_DECL , const char *dloc_file, int dloc_line #define DLOC_ARGS dloc_file, dloc_line #define DLOC_ARGS_OPT dloc_file, dloc_line