home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / config / m68k / xm-hp320.h < prev    next >
C/C++ Source or Header  |  1993-01-05  |  461b  |  20 lines

  1. /* USG is needed to prevent trying to use getrusage and getwd.  */
  2. #define USG
  3.  
  4. #include "m68k/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.