home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c010 / 1.ddi / FLILIB3.ZIP / FLISRC3.ZIP / FLIMEM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-02  |  129 b   |  14 lines

  1.  
  2. extern void *malloc();
  3.  
  4. void *aa_malloc(unsigned size)
  5. {
  6. return(malloc(size));
  7. }
  8.  
  9. aa_free(void *pt)
  10. {
  11. free(pt);
  12. }
  13.  
  14.