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

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

php - Satis Composer Repository Installation -