I was learning the C language and was peeking through some header files in the Linux directory /usr/include such as stdio.h, stdlib.h etc. What really was bothering me was that I see all functions define with an extern variable, which means they are only being declared without any definition such as:
extern FILE *fopen (__const char *__restrict __filename,
__const char *__restrict __modes) __wur;
The same goes for every other function in every other header file. My question is, if they are only being declared where are their implementations? They have to be implemented somewhere right?
externkeyword is purely extraneous in function declarations. All it does is waste disk space and parser time when the compiler parses it. Of course the comments and argument names do this too.. – R.. May 10 '11 at 23:26