home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
io Programmo 27
/
IOPROG_27.ISO
/
SOFT
/
GRAPH.ZIP
/
AI
/
SRC
/
NOHEAP.CPP
< prev
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
|
1994-08-12
|
240 b
|
19 lines
#include <stdio.h>
#include <stdlib.h>
#include <new.h>
#ifdef MSC
int no_mem(size_t size)
{
puts("Out of memory");
exit(1);
return(0);
}
#else
void no_mem()
{
puts("Out of memory");
exit(1);
}
#endif