Changeset 615 for GPL/branches/uniaud32-next/include/linux/stringify.h
- Timestamp:
- Jan 1, 2021, 5:31:48 AM (5 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/stringify.h
r399 r615 1 1 #ifndef __LINUX_STRINGIFY_H 2 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 3 11 #endif /* __LINUX_STRINGIFY_H */
Note:
See TracChangeset
for help on using the changeset viewer.