Initial revision

From-SVN: r2
This commit is contained in:
Charles Hannum 1988-11-23 07:17:23 +00:00
commit 6f39d4ff67
1 changed files with 7 additions and 0 deletions

7
gcc/config/m68k/xm-3b1.h Normal file
View File

@ -0,0 +1,7 @@
#define USG
#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)