Sign in
qemu
/
meson
/
ef83d943d96c5d73c09bd6e2abbfdbb15ae73029
/
.
/
test cases
/
common
/
133 c cpp and asm
/
main.cpp
blob: debb97ac61d20297819431bbf39bd60943ae4441 [
file
] [
log
] [
blame
]
#include
<iostream>
extern
"C"
{
int
get_retval
(
void
);
int
get_cval
(
void
);
}
int
main
(
void
)
{
std
::
cout
<<
"C++ seems to be working."
<<
std
::
endl
;
return
get_retval
();
}