summaryrefslogtreecommitdiffstats
path: root/test cases/common/74 file object/subdir2/prog.c
blob: 8a8f0d016247ab01a21e2fb6829e7da039c86152 (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() == 2) {
        printf("Iz success.\n");
    } else {
        printf("Iz fail.\n");
        return 1;
    }
    return 0;
}