diff options
Diffstat (limited to 'gcc/config/sparc/xm-pbd.h')
-rw-r--r-- | gcc/config/sparc/xm-pbd.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/config/sparc/xm-pbd.h b/gcc/config/sparc/xm-pbd.h new file mode 100644 index 0000000..dad9fdc --- /dev/null +++ b/gcc/config/sparc/xm-pbd.h @@ -0,0 +1,13 @@ +/* Host environment for the tti "Unicom" PBB 68020 boards */ + +#include "sparc/xm-sparc.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) + +#ifndef __GNUC__ +#define USE_C_ALLOCA +#endif + |