1
0
Fork 0
forked from len0rd/rockbox

Changing to C99 'bool' type

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@561 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-05-13 12:29:34 +00:00
parent 0631a1dcce
commit 2382044ffc
8 changed files with 19 additions and 47 deletions

View file

@ -318,10 +318,10 @@ void UIE (unsigned int pc) /* Unexpected Interrupt or Exception */
while (1)
{
bool state = TRUE;
bool state = true;
led (state);
state = state?FALSE:TRUE;
state = state?false:true;
for (i = 0; i < 240000; ++i);
}