home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
cpm
/
smallc21
/
smc21lib.lbr
/
CALLOC.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
|
1985-04-01
|
256 b
|
11 lines
#define NOCCARGC
#include stdio.h
/*
** Cleared-memory allocation of n items of size bytes.
** Returns address or NULL.
*/
calloc(n, size) char *n, *size; {
return(_alloc(n*size, YES));
}