aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/rust/5 polyglot static/prog.c
blob: dbbd8800aa5db853b23e7619be9b1e93b9603c25 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

void f();

int main(void) {
    printf("Hello from C!\n");
    f();
}