✏️ 正在编辑: stringify.h
路径:
/usr/src/linux-aws-headers-4.15.0-1057/include/linux/stringify.h
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#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 */
💾 保存文件
← 返回文件管理器