Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
422c1de564cec5689de052d5eb0c2ddd7065833c
/
.
/
Tests
/
RunCMake
/
ExportImport
/
bar.c
blob: 19adca9cd39e7419ce3dc8e9be623d9407fb09f5 [
file
]
#if defined(_WIN32)
__declspec
(
dllimport
)
#endif
int
foo
(
void
);
#ifdef
_WIN32
__declspec
(
dllexport
)
#endif
int
bar
(
void
)
{
return
foo
();
}