|
Last change
on this file since 692 was 679, checked in by David Azarewicz, 5 years ago |
|
Merge changes from Paul's uniaud32next branch.
|
|
File size:
352 bytes
|
| Line | |
|---|
| 1 | #ifndef __LINUX_STRINGIFY_H
|
|---|
| 2 | #define __LINUX_STRINGIFY_H
|
|---|
| 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 |
|
|---|
| 11 | #endif /* __LINUX_STRINGIFY_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.