home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 092.lha / ASDG / LowMemoryServer / lms-trip.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-21  |  175 b   |  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.