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 >
Text File  |  1979-12-31  |  512b  |  12 lines

  1. #define NOCCARGC  /* no argument count passing */
  2. #include stdio.h
  3. /*
  4. ** Memory allocation of size bytes.
  5. ** size  = Size of the block in bytes.
  6. ** Returns the address of the allocated block,
  7. ** else NULL for failure.
  8. */
  9. malloc(size) char *size; {
  10.   return (Ualloc(size, NO));
  11.   }
  12.