home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / config / xm-hp9k320.h < prev    next >
C/C++ Source or Header  |  1990-10-08  |  284b  |  14 lines

  1. #define USG
  2.  
  3. #include "xm-m68k.h"
  4.  
  5. #define bcopy(a,b,c) memcpy (b,a,c)
  6. #define bzero(a,b) memset (a,0,b)
  7. #define bcmp(a,b,c) memcmp (a,b,c)
  8.  
  9. /* If compiling with HPUX compiler, we are probably using alloca.c,
  10.    so help it work right.  */
  11. #ifndef __GNUC__
  12. #define USE_C_ALLOCA
  13. #endif
  14.