home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / misc / gold03.lzh / GF_003 / LOWMEM / LMS-TRIP.C < prev    next >
C/C++ Source or Header  |  1991-04-28  |  175b  |  14 lines

  1. /*
  2. ; Program which should force should trip the low memory server
  3. */
  4.  
  5. extern void *AllocMem();
  6.  
  7. main()
  8. {
  9.     char *p = AllocMem(7000000 , 0L);
  10.  
  11.     if (*p) FreeMem(p , 7000000);
  12. }
  13.  
  14.