blob: b95d3ec43b13c07e30283c1d8fe54a46f20fa869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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;
}
|