home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
small_c
/
sc88.arc
/
MALLOC.C
< prev
next >
Wrap
Text File
|
1987-10-04
|
384b
|
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));
}