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

int CsharedFunction()
{
#if !defined(_WIN32) || defined(__CYGWIN__)
#ifndef TEST_C_FLAGS
  printf("TEST_C_FLAGS failed\n");
  return 0;
#else
  printf("Passed: TEST_C_FLAGS passed\n");  
#endif  
#endif
  return 1;
}