¿¹Á¦
static void
foo(){
printf(
"foo is not called in this file"
);
}
int
main(
int
argc,
char
* argv[])
{
return
0;
}
¼Ö·ç¼Ç
static ÇÔ¼ö¸¦ ÀÌ¿ëÇϰųª ¶Ç´Â ÆÄÀÏ¿¡¼ Á¦°ÅÇϽʽÿÀ.
static void
foo(){
printf(
"foo is not called in this file"
);
}
int
main(
int
argc,
char
* argv[])
{
foo();
return
0;
}