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