aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/94 custominc/prog2.c
blob: e64b22919016796cdf321d1785c78282be51812f (plain)
1
2
3
4
5
6
7
8
9
10
#include<stdlib.h>
#include<generated.h>

int func(void);

int main(int argc, char **argv) {
    (void)argc;
    (void)(argv);
    return func() + RETURN_VALUE;
}