CMake/Tests/SameName/Exe1/conly.c

12 lines
148 B
C
Raw Normal View History

2005-06-16 19:47:29 +04:00
#include "libc1.h"
#include <stdio.h>
int main()
2005-06-16 19:47:29 +04:00
{
if (LibC1Func() != 2.0) {
2005-06-16 19:47:29 +04:00
printf("Problem with libc1\n");
return 1;
}
2005-06-16 19:47:29 +04:00
return 0;
}