- Replace 'while(' with 'while ('.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2358 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch
2009-06-23 22:36:11 +00:00
parent e43979e702
commit 50c086ffb9
24 changed files with 124 additions and 124 deletions

View File

@@ -29,7 +29,7 @@ int main (void)
{
volatile unsigned char *led = ((volatile unsigned char *)0xB6020000);
while(1)
while (1)
{
*led = 0xFF;
delay();
@@ -46,13 +46,13 @@ __gccmain()
void exit(int exit_code)
{
while(1);
while (1);
} /* EXIT */
atexit()
{
while(1);
while (1);
} /* ATEXIT */