I'm curious about the output of the preprocessing step of GCC. More precisely, what is the purpose of the following two lines:
# 1 "<built-in>"
# 1 "<command line>"
I know that the format is <line_number> <file name> <flags>
but I don't understand what type of data might appear in this section. What is its purpose?
Thanks!