home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / TIFF / TFTOOL.ZIP / ALDMEM.H next >
Encoding:
Text File  |  1988-11-02  |  363 b   |  14 lines

  1. /*****************************************************************************
  2.  *    aldmem.h 
  3.  *
  4.  ****************************************************************************/
  5.  
  6. char *malloc ARGS((unsigned));
  7. int free ARGS((char *));
  8.  
  9. #define MMAlloc(sz)        malloc((unsigned)(sz))
  10. #define    MMFree(p)        free((p))
  11.  
  12. #define MMLock(p)        (p)
  13. #define MMUnlock(p)
  14.