00001 00008 #if !defined(_MEM_COMPAT_H) 00009 #define _MEM_COMPAT_H 00010 00011 #include <stdlib.h> 00012 #include <string.h> 00013 #include <strings.h> 00014 00015 #define gMalloc malloc 00016 #define gFree free 00017 #define gRealloc realloc 00018 #define gCalloc calloc 00019 00020 #define gMemSet(P,L,C) memset((P),(C),(L)) 00021 #define QSort(a,b,c,d) qsort(a, b, c, \ 00022 (int (*)(const void *, const void *))d) 00023 00024 #endif /* _MEM_COMPAT_H */