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

Revision 8834, 308 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#include "m68k/xm-m68k.h"
4
5#define bcopy(a,b,c) memcpy (b,a,c)
6#define bzero(a,b) memset (a,0,b)
7#define bcmp(a,b,c) memcmp (a,b,c)
8#define index strchr
9#define rindex strrchr
10
11/* Override part of the obstack macros.  */
12
13#define __PTR_TO_INT(P) ((int)(P))
14#define __INT_TO_PTR(P) ((char *)(P))
Note: See TracBrowser for help on using the repository browser.