Release 4.12 include/linux/stringify.h
#ifndef __LINUX_STRINGIFY_H
#define __LINUX_STRINGIFY_H
/* Indirect stringification. Doing two levels allows the parameter to be a
* macro itself. For example, compile with -DFOO=bar, __stringify(FOO)
* converts to "bar".
*/
#define __stringify_1(x...) #x
#define __stringify(x...) __stringify_1(x)
#endif /* !__LINUX_STRINGIFY_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 19 | 73.08% | 1 | 25.00% |
Linus Torvalds | 4 | 15.38% | 1 | 25.00% |
Zhao Lei | 2 | 7.69% | 1 | 25.00% |
Jeff Dike | 1 | 3.85% | 1 | 25.00% |
Total | 26 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.