mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
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
1e5b51ef70
commit
b54167e198
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32542
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user