aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/ns32k/xm-genix.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/ns32k/xm-genix.h')
-rw-r--r--gcc/config/ns32k/xm-genix.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config/ns32k/xm-genix.h b/gcc/config/ns32k/xm-genix.h
new file mode 100644
index 00000000000..76be3b76fc8
--- /dev/null
+++ b/gcc/config/ns32k/xm-genix.h
@@ -0,0 +1,9 @@
+/* Config file for ns32k running system V. */
+
+#include "ns32k/xm-ns32k.h"
+
+#define USG
+
+#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)