aboutsummaryrefslogtreecommitdiff
path: root/include/linux/stringify.h
blob: 5c5a132fe479eefa21141a435d13d53ec677dd89 (plain)
1
2
3
4
5
6
7
8
#ifndef __LINUX_STRINGIFY_H
#define __LINUX_STRINGIFY_H


#define __stringify_1(x...)	#x
#define __stringify(x...)	__stringify_1(x)

#endif