Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
CudaOnly
/
SeparateCompilationTargetObjects
/
main.cu
blob: 367c4885ad3321ec35033c6ca8a43b855709ef2d [
file
] [
log
] [
blame
] [
edit
]
#ifdef
_WIN32
# define IMPORT __declspec(dllimport)
#else
# define IMPORT
#endif
IMPORT
int
foo
();
IMPORT
int
bar
();
int
main
(
int
argc
,
char
**)
{
return
foo
()
&&
bar
();
}