16 lines
199 B
C
Raw Normal View History

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