1989-12-17 16:20:07 -05:00
|
|
|
#define USG
|
|
|
|
|
|
|
|
#ifndef unos
|
|
|
|
#define unos
|
|
|
|
#endif
|
|
|
|
|
1993-01-05 03:54:51 -05:00
|
|
|
#include "m68k/xm-m68k.h"
|
1989-12-17 16:20:07 -05:00
|
|
|
|
|
|
|
#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)
|
|
|
|
|
1993-12-25 13:04:48 -05:00
|
|
|
/* UNOS has vprintf() */
|
|
|
|
#define HAVE_VPRINTF
|
|
|
|
|
1989-12-17 16:20:07 -05:00
|
|
|
/* Avoid conflict with C library by changing name of this symbol. */
|
|
|
|
#define gettime gcc_gettime
|
|
|
|
|
|
|
|
#ifndef __GNUC__
|
|
|
|
#define USE_C_ALLOCA
|
|
|
|
#endif
|
|
|
|
|
1994-11-15 19:45:41 -05:00
|
|
|
/* Override part of the obstack macros. */
|
|
|
|
|
|
|
|
#define __PTR_TO_INT(P) ((int)(P))
|
|
|
|
#define __INT_TO_PTR(P) ((char *)(P))
|