home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / MSGDP206.SZH / NOHANDL.H < prev    next >
Text File  |  1990-07-30  |  288b  |  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.