entered into RCS

From-SVN: r6
This commit is contained in:
Charles Hannum 1989-12-17 21:20:07 +00:00
parent 78206eab70
commit ffa8863de3
1 changed files with 21 additions and 0 deletions

21
gcc/config/m68k/xm-crds.h Normal file
View File

@ -0,0 +1,21 @@
#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