home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-base.tgz / libg++-2.7.1-src.tar / fsf / libg++ / libiberty / alloca-norm.h < prev    next >
C/C++ Source or Header  |  1995-06-28  |  382b  |  17 lines

  1. /* "Normal" configuration for alloca.  */
  2.  
  3. #ifdef __GNUC__
  4. #define alloca __builtin_alloca
  5. #else /* not __GNUC__ */
  6. #ifdef sparc
  7. #include <alloca.h>
  8. extern char *__builtin_alloca();  /* Stupid include file doesn't declare it */
  9. #else
  10. #ifdef __STDC__
  11. PTR alloca (size_t);
  12. #else
  13. PTR alloca ();            /* must agree with functions.def */
  14. #endif
  15. #endif /* sparc */
  16. #endif /* not __GNUC__ */
  17.