fixup! riscv: Implement large addend for global address
[tinycc.git] / tests / 42test.h
blob5db7d1c47748de8252dee8f348abb5569eb7ab33
1 /* This file is to test compute #include directives. It's named so
2 that it starts with a pre-processing number which isn't a valid
3 number (42test.h). Including this must work. */
4 #ifndef INC42_FIRST
5 int have_included_42test_h;
6 #define INC42_FIRST
7 #elif !defined INC42_SECOND
8 #define INC42_SECOND
9 int have_included_42test_h_second;
10 #else
11 #define INC42_THIRD
12 int have_included_42test_h_third;
13 #endif