moved some static declarations that were illegal ANSI C
This commit is contained in:
parent
07092a19ca
commit
b5c5f09b16
1 changed files with 3 additions and 2 deletions
|
@ -719,6 +719,9 @@ ChkFunCall(expp)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC int ChkStandard();
|
||||||
|
STATIC int ChkCast();
|
||||||
|
|
||||||
int
|
int
|
||||||
ChkCall(expp)
|
ChkCall(expp)
|
||||||
register t_node *expp;
|
register t_node *expp;
|
||||||
|
@ -728,8 +731,6 @@ ChkCall(expp)
|
||||||
it may also be a cast or a standard procedure call.
|
it may also be a cast or a standard procedure call.
|
||||||
*/
|
*/
|
||||||
register t_node *left = expp->nd_left;
|
register t_node *left = expp->nd_left;
|
||||||
STATIC int ChkStandard();
|
|
||||||
STATIC int ChkCast();
|
|
||||||
|
|
||||||
/* First, get the name of the function or procedure
|
/* First, get the name of the function or procedure
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue