BSD 4_3_Net_2 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 23 Mar 1990 05:29:16 +0000 (21:29 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 23 Mar 1990 05:29:16 +0000 (21:29 -0800)
Work on file usr/src/usr.bin/gcc/cc1/config/xm-hp9k320.h

Synthesized-from: CSRG/cd2/net.2

usr/src/usr.bin/gcc/cc1/config/xm-hp9k320.h [new file with mode: 0644]

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 (file)
index 0000000..0974ac8
--- /dev/null
@@ -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