home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / alloca.h next >
Encoding:
C/C++ Source or Header  |  1994-02-01  |  232 b   |  17 lines

  1.  
  2. /*
  3.  * $VER: alloca.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, 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.