summaryrefslogtreecommitdiffstats
path: root/Tests/SimpleInstallS2/inst.cxx
blob: 241a296b4f3258d6f6fc73dec5ca51e6b813601a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "foo.h"

#include "lib1.h"
#include "lib2.h"
#include "lib4.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;
    }
  if ( Lib4Func() != 4.0 )
    {
    printf("Problem with lib4\n");
    return 1;
    }
  printf("The value of Foo: %s\n", foo);
  return SomeFunctionInFoo()-5;
}