home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c220 / 4.ddi / ETC / ALLOCA.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-16  |  192 b   |  7 lines

  1. extern void * alloca(unsigned);
  2. /* If you use alloca, within the invoking routine you must disable two
  3.  * optimizations:
  4.  */
  5. #pragma off(postpone_callee_pops);
  6. #pragma off(optimize_fp);
  7.