source: GPL/trunk/include/linux/stringify.h

Last change on this file was 679, checked in by David Azarewicz, 4 years ago

Merge changes from Paul's uniaud32next branch.

File size: 352 bytes
RevLine 
[399]1#ifndef __LINUX_STRINGIFY_H
2#define __LINUX_STRINGIFY_H
[679]3/* Indirect stringification. Doing two levels allows the parameter to be a
4 * macro itself. For example, compile with -DFOO=bar, __stringify(FOO)
5 * converts to "bar".
6 */
7
8#define __stringify_1(x,...) #x
9#define __stringify(x,...) __stringify_1(x)
10
[399]11#endif /* __LINUX_STRINGIFY_H */
Note: See TracBrowser for help on using the repository browser.