summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/SeparateCompilationTargetObjects/main.cu
blob: 367c4885ad3321ec35033c6ca8a43b855709ef2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef _WIN32
#  define IMPORT __declspec(dllimport)
#else
#  define IMPORT
#endif

IMPORT int foo();
IMPORT int bar();

int main(int argc, char**)
{
  return foo() && bar();
}