2008-10-12 18:41:06 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
extern int tlib2func();
|
|
|
|
|
|
|
|
int tlib7func()
|
|
|
|
{
|
|
|
|
printf("This is T7\n");
|
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
if (tlib2func() != 2) {
|
2008-10-12 18:41:06 +02:00
|
|
|
fprintf(stderr, "Something wrong with T2\n");
|
|
|
|
return 1;
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
return 7;
|
|
|
|
}
|