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