home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / FIDO / MSGD2SRC.ZIP / NOHANDL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-30  |  288 b   |  12 lines

  1. /* PUBLIC DOMAIN */
  2.  
  3. #define __handle
  4. #define handle_malloc(n)    malloc(n)
  5. #define handle_calloc(n)    calloc((n),1)
  6. #define handle_realloc(h,n)    realloc((h),(n))
  7. #define handle_free(h)        free(h)
  8. #define handle_strdup(h)    strdup(h)
  9.  
  10. #undef handle_ishandle
  11. #define handle_ishandle(h)    0
  12.