blob: d460f60e40511f5c33d515090da83bdb0f1f60e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
extern void lib1_function(void);
extern void lib2_function(void);
extern void moveable_function(void);
int main(void)
{
fprintf(stdout, "Hello from program.c\n");
fflush(stdout);
lib1_function();
lib2_function();
moveable_function();
return 0;
}
|