First all previous declaration of __FUNCT__ are ignored by the compile using #undef, next the identifier is declared again and set to the string "main" in the line #define __FUNCT__ "main"
Personally I've never seen anyone do this setting it to "main", I can see it being useful if you want to use a library or something but don't want to use their declared function name of course I don't know why you would make this an identifier instead of just creating another function taking the same parameters and calling it what ever you want.
In any case, I do not believe this is a standar C programming convention and from the limited code snippet it is not clear exactly what it is being used for or why it is done.