summaryrefslogtreecommitdiff
path: root/Tests/ObjectLibrary/main.c
blob: cc7568527c6d526b6ca0cbc88794a9a4e5f8e8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#if defined(_WIN32) && defined(SHARED_C)
#  define IMPORT_C __declspec(dllimport)
#else
#  define IMPORT_C
#endif
extern IMPORT_C int b1(void);
extern IMPORT_C int b2(void);
extern IMPORT_C int c(void);
int main(void)
{
  return 0 + c() + b1() + b2();
}