home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / unix / unixlib_1 / !UnixLib37_src_clib_h_alloca < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-09  |  793 b   |  37 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /unixb/home/unixlib/source/unixlib37/src/clib/h/RCS/alloca,v $
  4.  * $Date: 1996/10/30 21:58:58 $
  5.  * $Revision: 1.2 $
  6.  * $State: Rel $
  7.  * $Author: unixlib $
  8.  *
  9.  * $Log: alloca,v $
  10.  * Revision 1.2  1996/10/30 21:58:58  unixlib
  11.  * Massive changes made by Nick Burret and Peter Burwood.
  12.  *
  13.  * Revision 1.1  1996/04/19 21:02:57  simon
  14.  * Initial revision
  15.  *
  16.  ***************************************************************************/
  17.  
  18. #ifndef __ALLOCA_H
  19. #define __ALLOCA_H
  20.  
  21. #ifndef __STDDEF_H
  22. #include <stddef.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. /* Allocate a block that will be freed when the calling function exits.  */
  30. extern void *alloca (size_t);
  31.  
  32. #ifdef __cplusplus
  33.     }
  34. #endif
  35.  
  36. #endif
  37.