And https://gcc.gnu.org/onlinedocs/cpp/Defined.html says defined is not needed.
> Conditionals written like this: > > #if defined BUFSIZE && BUFSIZE >= 1024 > > can generally be simplified to just #if BUFSIZE >= 1024, since if BUFSIZE is not defined, it will be interpreted as having the value zero.
parent
a4a9306b
No related branches found
No related tags found
Please register or sign in to comment