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