home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / config / xm-hp320.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  456b  |  20 lines

  1. /* USG is needed to prevent trying to use getrusage and getwd.  */
  2. #define USG
  3.  
  4. #include "xm-m68k.h"
  5.  
  6. #define bcopy(a,b,c) memcpy (b,a,c)
  7. #define bzero(a,b) memset (a,0,b)
  8. #define bcmp(a,b,c) memcmp (a,b,c)
  9. #define rindex strrchr
  10. #define index strchr
  11.  
  12. /* If compiling with HPUX compiler, we are probably using alloca.c,
  13.    so help it work right.  */
  14. #ifndef __GNUC__
  15. #define USE_C_ALLOCA
  16. #endif
  17.  
  18. /* Don't try to use sys_siglist.  */
  19. #define NO_SYS_SIGLIST
  20.