Příklad
static void
foo(){
printf(
"foo není v tomto souboru volána"
);
}
int
main(
int
argc,
char
* argv[])
{
return
0;
}
Řešení
Využijte statickou funkci nebo ji odeberte ze souboru.
static void
foo(){
printf(
"foo není v tomto souboru volána"
);
}
int
main(
int
argc,
char
* argv[])
{
foo();
return
0;
}