summaryrefslogtreecommitdiff
path: root/Tests/Module/WriteCompilerDetectionHeader/main_multi.c
blob: 6e13fd7628c55ec59068c9509eda563c5d0bb8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

#include "multi_file_compiler_detection.h"

#if !defined(MULTI_COMPILER_C_FUNCTION_PROTOTYPES) ||                         \
  !MULTI_COMPILER_C_FUNCTION_PROTOTYPES
#error Expected MULTI_COMPILER_C_FUNCTION_PROTOTYPES
#endif

#if !EXPECTED_COMPILER_C_FUNCTION_PROTOTYPES
#error Expected EXPECTED_COMPILER_C_FUNCTION_PROTOTYPES
#endif

#if !defined(MULTI_COMPILER_C_RESTRICT) || !MULTI_COMPILER_C_RESTRICT
#if EXPECTED_COMPILER_C_RESTRICT
#error Expected MULTI_COMPILER_C_RESTRICT
#endif
#else
#if !EXPECTED_COMPILER_C_RESTRICT
#error Expect no MULTI_COMPILER_C_RESTRICT
#endif
#endif

#ifdef MULTI_COMPILER_CXX_STATIC_ASSERT
#error Expect no CXX features defined
#endif

int main()
{
  return 0;
}