home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / misc / m2_part1.lha / modula / dice / dice.LHA / include / alloca.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-17  |  203 b   |  17 lines

  1.  
  2. /*
  3.  *  ALLOCA.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef _ALLOCA_H
  9. #define _ALLOCA_H
  10.  
  11. extern __regargs void *_dice_alloca(long);
  12.  
  13. #define alloca        _dice_alloca
  14.  
  15. #endif
  16.  
  17.