home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
ENTERPRS
/
CPM
/
UTILS
/
S
/
SMC21LIB.LZH
/
CALLOC.C
< prev
next >
Wrap
Text File
|
2000-06-30
|
256b
|
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));
}