t7.c 207 B

12345678910111213141516
  1. #include <stdio.h>
  2. extern int tlib2func();
  3. int tlib7func()
  4. {
  5. printf("This is T7\n");
  6. if ( tlib2func() != 2 )
  7. {
  8. fprintf(stderr, "Something wrong with T2\n");
  9. return 1;
  10. }
  11. return 7;
  12. }