r_macros.h (ssldump-1.4) | : | r_macros.h (ssldump-1.5) | ||
---|---|---|---|---|
skipping to change at line 76 | skipping to change at line 76 | |||
#endif | #endif | |||
#ifndef ABORT | #ifndef ABORT | |||
#define ABORT(a) do { int _r=a; if(!_r) _r=-1; REPORT_ERROR_("ABORT",_r); _statu s=_r; goto abort;} while(0) | #define ABORT(a) do { int _r=a; if(!_r) _r=-1; REPORT_ERROR_("ABORT",_r); _statu s=_r; goto abort;} while(0) | |||
#endif | #endif | |||
#ifndef FREE | #ifndef FREE | |||
#define FREE(a) if(a) free(a) | #define FREE(a) if(a) free(a) | |||
#endif | #endif | |||
#ifndef MIN | #ifndef MIN | |||
#define MIN(a,b) ((a)>(b))?(b):(a) | #define MIN(a,b) (((a)>(b))?(b):(a)) | |||
#endif | #endif | |||
#ifndef MAX | #ifndef MAX | |||
#define MAX(a,b) ((b)>(a))?(b):(a) | #define MAX(a,b) (((b)>(a))?(b):(a)) | |||
#endif | #endif | |||
#ifdef DEBUG | #ifdef DEBUG | |||
#define DBG(a) debug a | #define DBG(a) debug a | |||
int debug(int class,char *format,...); | int debug(int class,char *format,...); | |||
#else | #else | |||
#define DBG(a) | #define DBG(a) | |||
#endif | #endif | |||
#ifndef RMALLOC | #ifndef RMALLOC | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |