Changeset 679 for GPL/trunk/include/linux/stringify.h
- Timestamp:
- Mar 18, 2021, 8:57:36 PM (4 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-linux-3.2.102 (added) merged: 611-614 /GPL/branches/uniaud32-next (added) merged: 615-678
- Property svn:mergeinfo changed
-
GPL/trunk/include/linux/stringify.h
r399 r679 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.