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