Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
CudaOnly
/
SeparateCompilationTargetObjects
/
main.cu
blob: 367c4885ad3321ec35033c6ca8a43b855709ef2d [
file
]
#ifdef
_WIN32
# define IMPORT __declspec(dllimport)
#else
# define IMPORT
#endif
IMPORT
int
foo
();
IMPORT
int
bar
();
int
main
(
int
argc
,
char
**)
{
return
foo
()
&&
bar
();
}