mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:35:53 +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);
|
|
}
|