Pierre Habouzit 4c630dbbc0 import cmake 2.6.0
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2008-10-12 18:41:06 +02:00

17 lines
207 B
C

#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;
}