Compare commits

...

1 Commits

Author SHA1 Message Date
Oliver Tappe
5f114e19ea * fix build when building gcc2 with gcc2 (c89-syntax)
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37475 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-07-11 20:51:57 +00:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1989,6 +1989,7 @@ yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -2008,7 +2009,6 @@ yylex ()
"literal");
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = GETC ();
@@ -2156,6 +2156,7 @@ yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -2175,7 +2176,6 @@ yylex ()
"string literal");
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = GETC ();

View File

@@ -4099,6 +4099,7 @@ real_yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -4118,7 +4119,6 @@ real_yylex ()
"literal");
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = getch ();
@@ -4272,6 +4272,7 @@ real_yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -4291,7 +4292,6 @@ real_yylex ()
"string literal");
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = getch ();