12 lines
148 B
C
Raw Normal View History

#include "libc1.h"
#include <stdio.h>
2016-07-09 11:21:54 +02:00
int main()
{
2016-07-09 11:21:54 +02:00
if (LibC1Func() != 2.0) {
printf("Problem with libc1\n");
return 1;
2016-07-09 11:21:54 +02:00
}
return 0;
}