summaryrefslogtreecommitdiffstats
path: root/test cases/rust/5 polyglot static/clib.c
blob: 366dbe592cb956f98eff0ecdb9eab1ddd967613a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

void hello_from_rust(void);

static void hello_from_c(void) {
    printf("Hello from C!\n");
}

void hello_from_both(void) {
    hello_from_c();
    hello_from_rust();
}