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:
parent
0631a1dcce
commit
2382044ffc
8 changed files with 19 additions and 47 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue