Sign in
qemu
/
meson
/
refs/heads/builddirupgrade
/
.
/
test cases
/
common
/
6 linkshared
/
cpplib.cpp
blob: 8b3e0d25aa807c02d8549c61cded429ff2cb9811 [
file
] [
log
] [
blame
]
#if defined _WIN32
#define
DLL_PUBLIC __declspec
(
dllexport
)
#else
#define
DLL_PUBLIC __attribute__
((
visibility
(
"default"
)))
#endif
int
DLL_PUBLIC cppfunc
()
{
return
42
;
}