From 591402d7b2327c278cfe2429527529f3f0e394b5 Mon Sep 17 00:00:00 2001 From: CSRG Date: Fri, 4 Dec 1992 01:15:09 -0800 Subject: [PATCH] BSD 4_4_Lite2 development Work on file usr/src/contrib/gcc-2.3.3/config/xm-plexus.h Synthesized-from: CSRG/cd3/4.4BSD-Lite2 --- usr/src/contrib/gcc-2.3.3/config/xm-plexus.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 usr/src/contrib/gcc-2.3.3/config/xm-plexus.h diff --git a/usr/src/contrib/gcc-2.3.3/config/xm-plexus.h b/usr/src/contrib/gcc-2.3.3/config/xm-plexus.h new file mode 100644 index 0000000000..9eea7dea33 --- /dev/null +++ b/usr/src/contrib/gcc-2.3.3/config/xm-plexus.h @@ -0,0 +1,20 @@ +/* Host environment for 68000's running System V. */ + +#include "xm-m68k.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) + +#define rindex strrchr +#define index strchr + +#ifndef __GNUC__ +#define USE_C_ALLOCA +#endif + +#ifndef _SIZE_T_ +typedef int size_t; +#define _SIZE_T_ +#endif -- 2.20.1