diff options
Diffstat (limited to 'Tests/SameName/Exe1/conly.c')
-rw-r--r-- | Tests/SameName/Exe1/conly.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/SameName/Exe1/conly.c b/Tests/SameName/Exe1/conly.c new file mode 100644 index 0000000..eb62c30 --- /dev/null +++ b/Tests/SameName/Exe1/conly.c @@ -0,0 +1,12 @@ +#include "libc1.h" +#include <stdio.h> + +int main () +{ + if ( LibC1Func() != 2.0 ) + { + printf("Problem with libc1\n"); + return 1; + } + return 0; +} |