ncsa-mosaic/src/memStuffForPipSqueeks.h
Alan Dipert 29c82be0c2 init
2010-03-08 05:55:21 -05:00

7 lines
132 B
C

#ifndef MALLOC
#define MALLOC(x) malloc(x)
#define FREE(x) free(x)
#define CALLOC(x) calloc(x)
#define STRDUP(x) strdup(x)
#endif