Files
swift-mirror/test/Interop/C/macros/Inputs/redefined-macro.h
2020-12-15 09:20:19 +01:00

20 lines
375 B
C

#ifndef TEST_INTEROP_C_MACROS_INPUTS_REDEFINED_MACRO_H
#define TEST_INTEROP_C_MACROS_INPUTS_REDEFINED_MACRO_H
#define FOO 0
#define TMP_FOO FOO
#undef FOO
#define FOO TMP_FOO
#define ONE TWO
#define TWO THREE
#define THREE ONE
#define THE_MAX THREE
#undef THREE
#define THREE THE_MAX
#define BAR 0
#define BAZ BAR
#endif // TEST_INTEROP_C_MACROS_INPUTS_REDEFINED_MACRO_H