mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
232 B
C
13 lines
232 B
C
#include <stdio.h>
|
|
|
|
void exported_function() {
|
|
printf("exported_function\n");
|
|
}
|
|
|
|
int exported_variable = 0;
|
|
|
|
void print_exported_variable() {
|
|
printf("exported_variable value: %d\n", exported_variable);
|
|
fflush(stdout);
|
|
}
|