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