summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Import/install-RUNTIME_DEPENDENCIES/sublib2.c
blob: 61b5c8395903824f931cc36aced0e0278de65734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef _WIN32
__declspec(dllimport)
#endif
  extern void dep7(void);

#ifdef _WIN32
__declspec(dllexport)
#endif
  void sublib2(void)
{
  dep7();
}