r_macros.h (ssldump-0.9b3) | : | r_macros.h (ssldump-1.3) | ||
---|---|---|---|---|
skipping to change at line 108 | skipping to change at line 108 | |||
#ifndef RFREE | #ifndef RFREE | |||
#define RFREE(a) if(a) free(a) | #define RFREE(a) if(a) free(a) | |||
#endif | #endif | |||
#ifndef RREALLOC | #ifndef RREALLOC | |||
#define RREALLOC(a,b) realloc(a,b) | #define RREALLOC(a,b) realloc(a,b) | |||
#endif | #endif | |||
#define UNIMPLEMENTED do { fprintf(stderr,"Function %s unimplemented\n",__FUNCTI ON__); abort(); } while(0) | #define UNIMPLEMENTED do { fprintf(stderr,"Function %s unimplemented\n",__FUNCTI ON__); abort(); } while(0) | |||
#ifdef STDC_HEADERS | ||||
#include <string.h> | ||||
#endif | ||||
#ifndef STRNICMP | ||||
#ifdef _WIN32 | ||||
#define STRNICMP(a,b,n) strnicmp(a,b,n) | ||||
#else | ||||
#define STRNICMP(a,b,n) strncasecmp(a,b,n) | ||||
#endif | ||||
#endif | ||||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 14 lines changed or added |