]> git.lizzy.rs Git - rust.git/blob - tests/run-make/raw-dylib-link-ordinal/exporter.c
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / run-make / raw-dylib-link-ordinal / exporter.c
1 #include <stdio.h>
2
3 void exported_function() {
4     printf("exported_function\n");
5 }
6
7 int exported_variable = 0;
8
9 void print_exported_variable() {
10     printf("exported_variable value: %d\n", exported_variable);
11     fflush(stdout);
12 }