home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / DLIBSSRC.ZIP / BLKSIZ.C < prev    next >
Encoding:
Text File  |  1987-09-21  |  243 b   |  9 lines

  1. /*
  2.  *    Default _BLKSIZ variable declaration
  3.  *
  4.  *    NOTE:  (16 * _BLKSIZ) is the maximum amount of memory that can
  5.  *    by managed by the dynamic memory management routines.
  6.  */
  7.  
  8. unsigned long _BLKSIZ = 65536;        /* Malloc() in 64K chunks */
  9.