diff options
Diffstat (limited to 'bfd/m88kmach3.c')
-rw-r--r-- | bfd/m88kmach3.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bfd/m88kmach3.c b/bfd/m88kmach3.c index 3d1636a..8305401 100644 --- a/bfd/m88kmach3.c +++ b/bfd/m88kmach3.c @@ -1,5 +1,6 @@ /* BFD back-end for Motorola m88k a.out (Mach 3) binaries. - Copyright 1990, 1991, 1993, 1994, 1995 Free Software Foundation, Inc. + Copyright 1990, 1991, 1993, 1994, 1995, 2001 + Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -32,7 +33,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "libaout.h" #define DEFAULT_ARCH bfd_arch_m88k -#define MY(OP) CAT(m88kmach3_,OP) + +/* Do not "beautify" the CONCAT* macro args. Traditional C will not + remove whitespace added here, and thus will fail to concatenate + the tokens. */ +#define MY(OP) CONCAT2 (m88kmach3_,OP) #define TARGETNAME "a.out-m88k-mach3" #include "aout-target.h" |