source: trunk/third/gcc/config/m68k/xm-crds.h @ 8834

Revision 8834, 491 bytes checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8833, which included commits to RCS files with non-trunk default branches.
Line 
1#define USG
2
3#ifndef unos
4#define unos
5#endif
6
7#include "m68k/xm-m68k.h"
8
9#define bcopy(a,b,c) memcpy (b,a,c)
10#define bzero(a,b) memset (a,0,b)
11#define bcmp(a,b,c) memcmp (a,b,c)
12
13/* UNOS has vprintf() */
14#define HAVE_VPRINTF
15
16/* Avoid conflict with C library by changing name of this symbol.  */
17#define gettime gcc_gettime
18
19#ifndef __GNUC__
20#define USE_C_ALLOCA
21#endif
22
23/* Override part of the obstack macros.  */
24
25#define __PTR_TO_INT(P) ((int)(P))
26#define __INT_TO_PTR(P) ((char *)(P))
Note: See TracBrowser for help on using the repository browser.