summaryrefslogtreecommitdiffstats
path: root/Tests/ISPC/DynamicLibrary/main.cxx
blob: f9072c74aaa287ee8b8ef4ea64151598387d1585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


#ifdef _WIN32
#  define IMPORT __declspec(dllimport)
#else
#  define IMPORT
#endif

IMPORT int simple();
int extra();

int main()
{
  extra();
  simple();
  return 0;
}