Sign in
qemu
/
meson
/
410bdf8c6c72fd1a2772e86a2a14298f64f1377b
/
.
/
test cases
/
common
/
53 install script
/
prog.c
blob: 85f8df9c3d61d4ca68f785beb57baf0c9f84be96 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#ifdef
_WIN32
#define
DO_IMPORT __declspec
(
dllimport
)
#else
#define
DO_IMPORT
#endif
DO_IMPORT
int
foo
(
void
);
int
main
(
void
)
{
printf
(
"This is text.\n"
);
return
foo
();
}