Példa
static void
foo(){
printf(
"foo is not called in this file"
);
}
int
main(
int
argc,
char
* argv[])
{
return
0;
}
Megoldás
Használja fel a statikus függvényt vagy távolítsa el az a fájlból.
static void
foo(){
printf(
"foo is not called in this file"
);
}
int
main(
int
argc,
char
* argv[])
{
foo();
return
0;
}