c - Any reason to define a header-guard to 1? -


occasionally observe such header guards:

 #ifndef foo  #define foo 1  ...  #endif // foo 

but learned way:

 #ifndef foo  #define foo  ...  #endif // foo 

is define 1 old relict compiler?, harm nowadays? way now?


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -