home *** CD-ROM | disk | FTP | other *** search
-
- #define NOCCARGC
- #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 (_alloc(size, NO));
- }
-
- ,001,002,003,004,005,006,007,008,009,
- 010,011,012,013,014,015,016,017,018,019,
- 020,021,022,023,024,025,026,027,