home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / gdb-4.12-src.lha / src / build / gdb-4.12 / libiberty / alloca-conf.h next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  217 b   |  12 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. #else
  9. char *alloca ();
  10. #endif /* sparc */
  11. #endif /* not __GNUC__ */
  12.