summaryrefslogtreecommitdiffstats
path: root/Tests/SimpleExclude/dirC/dirB/t7.c
blob: b613e9175b7a462f6156939d7a98c2cad1f9dfb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

extern int tlib2func();

int tlib7func()
{
  printf("This is T7\n");

  if (tlib2func() != 2) {
    fprintf(stderr, "Something wrong with T2\n");
    return 1;
  }

  return 7;
}