22 lines
358 B
C
22 lines
358 B
C
|
#define USG
|
||
|
|
||
|
#ifndef unos
|
||
|
#define unos
|
||
|
#endif
|
||
|
|
||
|
#include "xm-m68k.h"
|
||
|
|
||
|
#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)
|
||
|
|
||
|
/* Avoid conflict with C library by changing name of this symbol. */
|
||
|
#define gettime gcc_gettime
|
||
|
|
||
|
#ifndef __GNUC__
|
||
|
#define USE_C_ALLOCA
|
||
|
#else
|
||
|
#define alloca __builtin_alloca
|
||
|
#endif
|
||
|
|