home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
malloc.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
512b
|
12 lines
#define NOCCARGC /* no argument count passing */
#include stdio.h
/*
** Memory allocation of size bytes.
** size = Size of the block in bytes.
** Returns the address of the allocated block,
** else NULL for failure.
*/
malloc(size) char *size; {
return (Ualloc(size, NO));
}