Sign in
qemu
/
meson
/
refs/heads/0.52
/
.
/
test cases
/
common
/
77 file object
/
subdir2
/
prog.c
blob: 3a90b0a93eb83789fa25f82cfbc79dfdb816f461 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
func
();
int
main
(
int
argc
,
char
**
argv
)
{
if
(
func
()
==
2
)
{
printf
(
"Iz success.\n"
);
}
else
{
printf
(
"Iz fail.\n"
);
return
1
;
}
return
0
;
}