mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-29 15:28:50 +01:00
7 lines
161 B
C
7 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
|