home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gcc-2.7.2.1-base.tgz / gcc-2.7.2.1-base.tar / fsf / gcc / config / mips / xm-iris4.h < prev    next >
C/C++ Source or Header  |  1993-01-05  |  444b  |  19 lines

  1. #include "mips/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.