Possible duplicate:
Where to find implementations of stdio.h functions?
Hi, I am trying to find function definitions for functions defined in the stdio.h header file, I want to know how functions like printf () are executed, but I cannot find a link to the preprocessor directors in stdio. h to the implementation file elsewhere. How does the C compiler know where to find implementations when there are no direct links to the function definition file? (I found out that the .h file may be accompanied by the same name .c implementation file from the objective-c book.) Could you help me? Thank you I use GCC on Mac OS X.
source share