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