The identifier true is not declared by default. To use it, two solutions :
- Compile in C99 and include
<stdbool.h>. - Define this identifier by yourself.
However, the infinite loop for (;;) is often considered as better style.
The identifier true is not declared by default. To use it, two solutions :
<stdbool.h>.However, the infinite loop for (;;) is often considered as better style.