2004-02-01 20:53:28 +03:00
|
|
|
#include "foo.h"
|
|
|
|
|
|
|
|
#include "lib1.h"
|
|
|
|
#include "lib2.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
if ( Lib1Func() != 2.0 )
|
|
|
|
{
|
|
|
|
printf("Problem with lib1\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ( Lib2Func() != 1.0 )
|
|
|
|
{
|
|
|
|
printf("Problem with lib2\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2004-02-09 19:33:00 +03:00
|
|
|
printf("The value of Foo: %s\n", foo);
|
2004-02-04 17:42:50 +03:00
|
|
|
return SomeFunctionInFoo()-5;
|
2004-02-01 20:53:28 +03:00
|
|
|
}
|