mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
13 lines
157 B
C
13 lines
157 B
C
#include "libc1.h"
|
|
#include <stdio.h>
|
|
|
|
int main ()
|
|
{
|
|
if ( LibC1Func() != 2.0 )
|
|
{
|
|
printf("Problem with libc1\n");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|