mirror of
https://github.com/Evolution-X-Devices/kernel_google_b1c1
synced 2026-02-10 12:20:09 +00:00
8 lines
161 B
C
8 lines
161 B
C
|
|
#ifndef _LIBLOCKDEP_LINUX_STRINGIFY_H_
|
||
|
|
#define _LIBLOCKDEP_LINUX_STRINGIFY_H_
|
||
|
|
|
||
|
|
#define __stringify_1(x...) #x
|
||
|
|
#define __stringify(x...) __stringify_1(x)
|
||
|
|
|
||
|
|
#endif
|