On 08/29/2012 08:44 AM, Michael Goffioul wrote: > AFAIK "bool" is a standard C++ type, there's no need to redefine it.
The idea was that gnulib should produce a GNU-like environment in other platforms, and on GNU platforms this: #include <stdbool.h> #ifdef bool return "bool is defined"; #endif returns "bool is defined" on GNU platforms, even when compiled using g++. If this was a mistake we can fix it of course. Like I said, I'm no C++ expert.