Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
e9e94de9cb6661e5a7e16af7a448c1be6e1512cd
/
.
/
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
();
}