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-irix4.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  439b  |  19 lines

  1. #include "xm-mips.h"
  2.  
  3. #define USG
  4. #define HAVE_VPRINTF
  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.  
  10. #if 0
  11. #ifdef __GNUC__
  12. /* The normal irix compiler requires alloca.h or alloca doesn't work.
  13.    However, the IRIX compiler doesn't allow alloca to be stored in
  14.    something like ptr->field = alloca(), so we just use the normal
  15.    C alloca.  */
  16. #include <alloca.h>
  17. #endif
  18. #endif
  19.