cregit-Linux how code gets into the kernel

Release 4.7 tools/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

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo26100.00%1100.00%
Total26100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}