version 1.26 | | version 1.27 |
---|
| | |
/* | | /* |
* static char *rcsid_global_h = | | * static char *rcsid_global_h = |
* "$Id: global.h,v 1.26 2002/03/26 07:18:57 mwedel Exp $"; | | * "$Id: global.h,v 1.27 2002/06/07 07:00:43 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
*/ | | */ |
#define FREE_AND_CLEAR(xyz) {free(xyz); xyz=NULL; } | | #define FREE_AND_CLEAR(xyz) {free(xyz); xyz=NULL; } |
| | |
| | /* FREE_AND_COPY is for the shared string - it is handy enough |
| | * to use all over the place. |
| | */ |
| | #define FREE_AND_COPY(sv,nv) { if (sv) free_string(sv); sv=add_string(nv); } |
| | |
#ifdef CALLOC | | #ifdef CALLOC |
#undef CALLOC | | #undef CALLOC |
#endif | | #endif |