aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/39 library chain/subdir/lib1.c
blob: 88436b27e14aaa7223d78ebfd6b66a300ff0c49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int lib2fun(void);
int lib3fun(void);

#if defined _WIN32 || defined __CYGWIN__
  #define DLL_PUBLIC __declspec(dllexport)
#else
  #if defined __GNUC__
    #define DLL_PUBLIC __attribute__ ((visibility("default")))
  #else
    #pragma message ("Compiler does not support symbol visibility.")
    #define DLL_PUBLIC
  #endif
#endif

int DLL_PUBLIC libfun(void) {
  return lib2fun() + lib3fun();
}