I'm having trouble using bool as a type compiling with ndk-build:

bool test = true;

error:

48: error: 'bool' undeclared (first use in this function)

Any ideas?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

bool is not a built-in type in C. You need to #include <stdbool.h> to get it.

link|improve this answer
AWESOME! Thanks @larsmans! – wajiw Jan 7 '11 at 17:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.