|
|
|
|
|
by salamander014
828 days ago
|
|
Historically, C compilers attempted to build the list of all symbols in one pass of the files. Sometimes, functions may call other functions in the same code file. This required that functions be declared before they are referenced so C knew it existed. You can also see this on lines 84-92. |
|