Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
d3e34186f69a7c89f2a3ac418e901b4d6e687773
/
.
/
Tests
/
LibName
/
foo.c
blob: 9b511568586bb1d5c85d8d26f9d4d3b67db8a1bc [
file
] [
log
] [
blame
]
#ifdef
_WIN32
__declspec
(
dllimport
)
#endif
extern
void
foo
(
void
);
#ifdef
_WIN32
__declspec
(
dllexport
)
#endif
void
bar
(
void
)
{
foo
();
}