home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 446.lha / AztecArp / Sources.LZH / malloc.c < prev    next >
Text File  |  1990-08-01  |  58b  |  6 lines

  1. void *
  2. malloc(size_t size)
  3. {
  4.     return(fmalloc(size,0L));
  5. }
  6.