7 lines
132 B
C
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
|