On 9/18/22 06:33, Bruno Haible wrote:
#include "unitypes.h"+/* Get bool. */+#include <stdbool.h>
In examples like these would it make sense to do the following instead? This would avoid a bit of namespace pollution.
#if !@HAVE_C_BOOL@ && !defined __cplusplus #include <stdbool.h> #endif