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 >
Wrap
C/C++ Source or Header
|
1991-04-28
|
175b
|
14 lines
/*
; Program which should force should trip the low memory server
*/
extern void *AllocMem();
main()
{
char *p = AllocMem(7000000 , 0L);
if (*p) FreeMem(p , 7000000);
}