summaryrefslogtreecommitdiff
path: root/Tests/Complex/Library/testConly.c
blob: a7d20b0b58c0857ebf9e8ffd11e1b15692e00823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "testConly.h"
#include <stdio.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;
}