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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-11-21
|
175 b
|
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);
}