On Thu, May 06, 2010 at 06:43:10PM -0500, Steve French wrote:
Hmm, looks weird, sparse doesn't understand bool well?
Can you construct a small C program to show this? Something like:
typedef _Bool bool;
enum {
false = 0,
true = 1
};
static const bool foo[10] = {
true,
true,
false,
false,
};
--