summaryrefslogtreecommitdiff
path: root/Tests/InstallMode/subpro_d_executable/src/main.cpp
blob: ec12004af4f7b1a8530d382f352b4cbcf3108daf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <cstdlib>

#include <c2_lib.h>
#include <shared_lib.h>
#include <static_lib.h>

int main()
{
  static_hello();
  shared_hello();
  c2_hello();
  return EXIT_SUCCESS;
}