8sa1-gcc/gcc/config/m68k/xm-plexus.h
James Van Artsdalen ac223acdf8 Use new files for included m68k files.
From-SVN: r3097
1993-01-05 08:54:51 +00:00

21 lines
352 B
C

/* Host environment for 68000's running System V. */
#include "m68k/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