Convert to "bool".

This commit is contained in:
Ralf Corsepius
2008-09-05 05:28:27 +00:00
parent 8858097652
commit 9e3c6d126a

View File

@@ -92,12 +92,12 @@ rtems_device_driver console_initialize(
* Return values: * Return values:
*/ */
rtems_boolean is_character_ready( bool is_character_ready(
char *ch char *ch
) )
{ {
*ch = '\0'; /* return NULL for no particular reason */ *ch = '\0'; /* return NULL for no particular reason */
return(TRUE); return true;
} }
/* inbyte /* inbyte