summaryrefslogtreecommitdiff
path: root/tests/projects/vala/includec/src/main.vala
blob: acc6c7363e606b874c2c22c1875d734605d343d1 (plain)
1
2
3
4
5
6
7
8
9
extern void printer_from_c();

int main (string[] args) {
    printer_from_c();
    printer_from_other_file();

    return 0;
}