home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / debug / gdb / glob / sysdep.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-25  |  325 b   |  18 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.  
  14. #ifdef NeXT
  15. #define xmalloc  malloc
  16. #define xrealloc realloc
  17. #endif    /* NeXT */
  18.