Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
380b324103da020d474b36db20595fff4072f895
/
.
/
Tests
/
RunCMake
/
GenEx-TARGET_RUNTIME_DLLS
/
lib1.c
blob: 524b5b22fadd5c58b93a360bc79b4075a9b5d2e5 [
file
]
#ifdef
_WIN32
__declspec
(
dllimport
)
#endif
extern
void
lib2
(
void
);
#ifdef
_WIN32
__declspec
(
dllexport
)
#endif
void
lib1
(
void
)
{
lib2
();
}