diff options
Diffstat (limited to 'bfd/aout-sparcle.c')
-rw-r--r-- | bfd/aout-sparcle.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bfd/aout-sparcle.c b/bfd/aout-sparcle.c index d8ad8a5..7772c29 100644 --- a/bfd/aout-sparcle.c +++ b/bfd/aout-sparcle.c @@ -1,5 +1,5 @@ /* BFD backend for sparc little-endian aout binaries. - Copyright 1996 Free Software Foundation, Inc. + Copyright 1996, 2001 Free Software Foundation, Inc. Written by Cygnus Support. This file is part of BFD, the Binary File Descriptor library. @@ -19,7 +19,11 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define TARGETNAME "a.out-sparc-little" -#define MY(OP) CAT(sparcle_aout_,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 (sparcle_aout_,OP) #include "bfd.h" #include "bfdlink.h" |