asm-const.h 376 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_S390_ASM_CONST_H
  3. #define _ASM_S390_ASM_CONST_H
  4. #ifdef __ASSEMBLY__
  5. # define stringify_in_c(...) __VA_ARGS__
  6. #else
  7. /* This version of stringify will deal with commas... */
  8. # define __stringify_in_c(...) #__VA_ARGS__
  9. # define stringify_in_c(...) __stringify_in_c(__VA_ARGS__) " "
  10. #endif
  11. #endif /* _ASM_S390_ASM_CONST_H */