Merge "Use the FreeBSD __CONCAT."

This commit is contained in:
Treehugger Robot 2018-07-24 21:52:23 +00:00 committed by Gerrit Code Review
commit 077f7f130f

View file

@ -94,7 +94,8 @@
#if defined(__STDC__) || defined(__cplusplus)
#define __P(protos) protos /* full-blown ANSI C */
#define __CONCAT(x,y) x ## y
#define __CONCAT1(x,y) x ## y
#define __CONCAT(x,y) __CONCAT1(x,y)
#define __STRING(x) #x
#if defined(__cplusplus)