8 lines
128 B
C
8 lines
128 B
C
/* mem.h */
|
|
|
|
|
|
#define DSSMalloc(a) ContAlloc(a)
|
|
#define DSSFree(a) if (NULL != (a)) ContFree(a)
|
|
|
|
|