home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- * aldmem.h
- *
- ****************************************************************************/
-
- char *malloc ARGS((unsigned));
- int free ARGS((char *));
-
- #define MMAlloc(sz) malloc((unsigned)(sz))
- #define MMFree(p) free((p))
-
- #define MMLock(p) (p)
- #define MMUnlock(p)