Searched defs:__CONCAT (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/include/sys/
H A Dcdefs.h90 * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
91 * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
92 * The __CONCAT macro is a bit tricky -- make sure you don't put spaces
93 * in between its arguments. __CONCAT can also concatenate double-quoted
98 #define ___CONCAT(x,y) __CONCAT(x,y)
102 #define __CONCAT(x,y) x ## y macro
118 #define __CONCAT(x,y) x/**/y macro

Completed in 426 milliseconds