aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/75 file object/subdir1/prog.c
blob: 38d13d2424b6f045565eb5dedb4f23def3eb874b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<stdio.h>

int func(void);

int main(void) {
    if(func() == 1) {
        printf("Iz success.\n");
    } else {
        printf("Iz fail.\n");
        return 1;
    }
    return 0;
}