home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / unixlib36d / UnixLib36d / clib / h / alloca next >
Encoding:
Text File  |  1994-02-27  |  314 b   |  24 lines

  1. /* alloca.h (c) Copyright 1991 H.Rogers */
  2.  
  3. #ifndef __ALLOCA_H
  4. #define __ALLOCA_H
  5.  
  6. #ifndef __SYS_TYPES_H
  7. #include <sys/types.h>
  8. #endif
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13.  
  14. #define alloca(x) __alloca(x)
  15. #define __builtin_alloca(x) __alloca(x)
  16.  
  17. extern void *alloca(size_t);
  18.  
  19. #ifdef __cplusplus
  20.     }
  21. #endif
  22.  
  23. #endif
  24.