OSHW-DEIMOS/SOFTWARE/A64-TERES/linux-a64/include/linux/stringify.h
Dimitar Gamishev f9b0e7a283 linux
2017-10-13 14:07:04 +03:00

13 lines
341 B
C

#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 */