summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexOneConfig/Library/testConly.c
blob: 35d6a399ccab4abd01d0e546e8253601e05988d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "testConly.h"

int CsharedFunction()
{
#ifndef TEST_C_FLAGS
  printf("TEST_C_FLAGS failed\n");
  return 0;
#else
  printf("Passed: TEST_C_FLAGS passed\n");  
#endif  
  return 1;
}