summaryrefslogtreecommitdiffstats
path: root/test cases/common/153 wrap file should not failed/src/test.c
blob: 34cf9918377c2ca872217fee22fc2e22e243b8ad (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int bar_dummy_func(void);
int dummy_func(void);

int main(void) {
    printf("Hello world %d\n", bar_dummy_func() + dummy_func());
    return 0;
}