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