2021-09-11 00:34:09 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
void exported_function() {
|
|
|
|
printf("exported_function\n");
|
|
|
|
}
|
2022-08-02 18:36:41 +00:00
|
|
|
|
|
|
|
int exported_variable = 0;
|
|
|
|
|
|
|
|
void print_exported_variable() {
|
|
|
|
printf("exported_variable value: %d\n", exported_variable);
|
|
|
|
fflush(stdout);
|
|
|
|
}
|