xref: /openbsd-src/sys/dev/pci/drm/include/linux/stringify.h (revision b46d8ef224b95de1dddcd1f01c1ab482f0ab3778)
1 /* Public domain. */
2 
3 #ifndef _LINUX_STRINGIFY_H
4 #define _LINUX_STRINGIFY_H
5 
6 #define ___stringify(x...)	#x
7 #define __stringify(x...)	___stringify(x)
8 
9 #endif
10