stringify.h 161 B

1234567
  1. #ifndef _LIBLOCKDEP_LINUX_STRINGIFY_H_
  2. #define _LIBLOCKDEP_LINUX_STRINGIFY_H_
  3. #define __stringify_1(x...) #x
  4. #define __stringify(x...) __stringify_1(x)
  5. #endif