Use the system __CONCAT() instead of /**/ for concatenation in the

non-ANSI case.  The system version is normally also /**/, but may
be different to support K&R compilers other than gcc -traditional.
This commit is contained in:
bde 1998-01-16 08:59:21 +00:00
parent 1a23c43091
commit 79c1dfd9a1

View File

@ -158,7 +158,8 @@ typedef __mpq_struct *mpq_ptr;
#if defined (__STDC__) || defined (__cplusplus)
#define __MPN(x) __mpn_##x
#else
#define __MPN(x) __mpn_/**/x
#include <sys/cdefs.h>
#define __MPN(x) __CONCAT(__mpn_,x)
#endif
#endif