I want to find the _Bool definition on my system, so for systems where it\'s missing I can implement it. I\'ve seen various definitions for it here and on other
_Bool
As a note:
The _Bool is defined in C99. If you build your program with:
gcc -std=c99
You can expect it to be there.