home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 466.lha / AztecArp_v1.9 / Source.LZH / lcalloc.c < prev    next >
Text File  |  1990-12-05  |  103b  |  6 lines

  1. void *
  2. lcalloc(size_t nelem,size_t size)
  3. {
  4.     return(fmalloc((size_t)nelem * size,(ULONG)MEMF_CLEAR));
  5. }
  6.