home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / glob / sysdep-obsd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-20  |  245 b   |  13 lines

  1. /* System-dependent stuff, for Sony NEwS, Mach, and other BSD-derived
  2.    systems */
  3.  
  4. #ifdef __GNUC__
  5. #define alloca __builtin_alloca
  6. #else
  7. extern char *alloca ();
  8. #endif
  9.  
  10. #include <sys/types.h>
  11. #include <sys/dir.h>
  12. typedef struct direct dirent;
  13.