From: CSRG Date: Fri, 23 Mar 1990 05:29:16 +0000 (-0800) Subject: BSD 4_3_Net_2 development X-Git-Tag: BSD-4_3_Net_2~747 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/3f3474fa2920e7cb165d5f5116e1a763510a82ba BSD 4_3_Net_2 development Work on file usr/src/usr.bin/gcc/cc1/config/xm-hp9k320.h Synthesized-from: CSRG/cd2/net.2 --- diff --git a/usr/src/usr.bin/gcc/cc1/config/xm-hp9k320.h b/usr/src/usr.bin/gcc/cc1/config/xm-hp9k320.h new file mode 100644 index 0000000000..0974ac8c90 --- /dev/null +++ b/usr/src/usr.bin/gcc/cc1/config/xm-hp9k320.h @@ -0,0 +1,13 @@ +#define USG + +#include "xm-m68k.h" + +#define bcopy(a,b,c) memcpy (b,a,c) +#define bzero(a,b) memset (a,0,b) +#define bcmp(a,b,c) memcmp (a,b,c) + +/* If compiling with HPUX compiler, we are probably using alloca.c, + so help it work right. */ +#ifndef __GNUC__ +#define USE_C_ALLOCA +#endif