Exemplo n.º 1
0
int main(void) {
  printf("main start. \n");
  static_function(100);
  shared_function(200, 300);
  printf("main end.\n");
  return 0;
}
Exemplo n.º 2
0
Arquivo: main.c Projeto: pgtux/C
int main(void) {
	printf("-- We are gonna check the call to shared object --\n");
	shared_function();
	addon();
	return 0;
}