ncsa-mosaic/src/memStuffForPipSqueeks.h

7 lines
132 B
C
Raw Normal View History

2010-03-08 05:55:21 -05:00
#ifndef MALLOC
#define MALLOC(x) malloc(x)
#define FREE(x) free(x)
#define CALLOC(x) calloc(x)
#define STRDUP(x) strdup(x)
#endif