Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
506d1752de3f202525e18614d773efba94679e33
/
.
/
Tests
/
LibName
/
foo.c
blob: 1bdb58b75b8942a9e60d016a709e9563e4ed95e5 [
file
]
#ifdef
_WIN32
__declspec
(
dllimport
)
#endif
extern
void
foo
(
void
);
#ifdef
_WIN32
__declspec
(
dllexport
)
#endif
void
bar
(
void
)
{
foo
();
}