aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/95 custominc/prog.c
blob: db9df9d5e56db755221bd06e6df17e327d2846b0 (plain)
1
2
3
4
5
6
7
8
9
#include<stdlib.h>

int func(void);

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