12 lines
143 B
C
12 lines
143 B
C
|
|
#ifndef _COMMON_MEM_H
|
|
|
|
#define _COMMON_MEM_H
|
|
|
|
#include <malloc.h>
|
|
|
|
#define sfree(x) \
|
|
if (x != NULL) \
|
|
free(x)
|
|
|
|
#endif /* _COMMON_MEM_H */
|