diff options
Diffstat (limited to 'bfd/sunos.c')
-rw-r--r-- | bfd/sunos.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/sunos.c b/bfd/sunos.c index db9d08a..01eb578 100644 --- a/bfd/sunos.c +++ b/bfd/sunos.c @@ -20,7 +20,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-sunos-big" -#define MY(OP) CAT(sunos_big_,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 (sunos_big_,OP) #include "bfd.h" #include "bfdlink.h" |