diff options
Diffstat (limited to 'kernel/tools/lib/lockdep/uinclude/linux/stringify.h')
-rw-r--r-- | kernel/tools/lib/lockdep/uinclude/linux/stringify.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/tools/lib/lockdep/uinclude/linux/stringify.h b/kernel/tools/lib/lockdep/uinclude/linux/stringify.h new file mode 100644 index 000000000..05dfcd1ac --- /dev/null +++ b/kernel/tools/lib/lockdep/uinclude/linux/stringify.h @@ -0,0 +1,7 @@ +#ifndef _LIBLOCKDEP_LINUX_STRINGIFY_H_ +#define _LIBLOCKDEP_LINUX_STRINGIFY_H_ + +#define __stringify_1(x...) #x +#define __stringify(x...) __stringify_1(x) + +#endif |