home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue2 / SDL.ARC / !unixlib / source / clib / h / alloca next >
Encoding:
Text File  |  2004-09-05  |  628 b   |  29 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/clib/alloca.h,v $
  4.  * $Date: 2004/04/12 13:03:37 $
  5.  * $Revision: 1.5 $
  6.  * $State: Exp $
  7.  * $Author: nick $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifndef __ALLOCA_H
  12. #define __ALLOCA_H
  13.  
  14. #ifndef __UNIXLIB_FEATURES_H
  15. #include <unixlib/features.h>
  16. #endif
  17.  
  18. #define __need_size_t
  19. #include <stddef.h>
  20.  
  21. __BEGIN_DECLS
  22.  
  23. /* Allocate a block that will be freed when the calling function exits.  */
  24. extern void *alloca (size_t __size) __THROW;
  25.  
  26. __END_DECLS
  27.  
  28. #endif
  29.