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 sites, but wanted to check on the system for the definitive definition.
Slight problem, in that I can't find where _Bool is defined or even stdbool.h
mussys@debmus:~$ find /usr/include/* -name stdbool.h
/usr/include/c++/4.3/tr1/stdbool.h
And grep for _Bool on /usr/include/* and /usr/include/*/* does not find it either.
So where is it?