aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/m68k/xm-m68kv.h
blob: ce3cf665e817077c7004200a028797d3d07ab3aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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