summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_include_directories/consumer.c
blob: ae88f9248d5b3cc45833dcc9b1d096c9fbc973e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#ifdef TEST_LANG_DEFINES
#include "c_only.h"

#ifndef C_ONLY_DEFINE
#error Expected C_ONLY_DEFINE
#endif
#endif

int consumer_c()
{
  return 0;
}