Back to home page

OSCL-LXR

 
 

    


0001 #ifndef __LINUX_STRINGIFY_H
0002 #define __LINUX_STRINGIFY_H
0003 
0004 /* Indirect stringification.  Doing two levels allows the parameter to be a
0005  * macro itself.  For example, compile with -DFOO=bar, __stringify(FOO)
0006  * converts to "bar".
0007  */
0008 
0009 #define __stringify_1(x...) #x
0010 #define __stringify(x...)   __stringify_1(x)
0011 
0012 #endif  /* !__LINUX_STRINGIFY_H */