Sign in
qemu
/
meson
/
refs/heads/xcodefix
/
.
/
test cases
/
common
/
74 file object
/
subdir2
/
prog.c
blob: 8a8f0d016247ab01a21e2fb6829e7da039c86152 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
func
(
void
);
int
main
(
void
)
{
if
(
func
()
==
2
)
{
printf
(
"Iz success.\n"
);
}
else
{
printf
(
"Iz fail.\n"
);
return
1
;
}
return
0
;
}