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:
parent
1a23c43091
commit
79c1dfd9a1
@ -158,7 +158,8 @@ typedef __mpq_struct *mpq_ptr;
|
|||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if defined (__STDC__) || defined (__cplusplus)
|
||||||
#define __MPN(x) __mpn_##x
|
#define __MPN(x) __mpn_##x
|
||||||
#else
|
#else
|
||||||
#define __MPN(x) __mpn_/**/x
|
#include <sys/cdefs.h>
|
||||||
|
#define __MPN(x) __CONCAT(__mpn_,x)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user