From: ceriel Date: Tue, 19 Feb 1991 12:44:38 +0000 (+0000) Subject: moved some static declarations that were illegal ANSI C X-Git-Tag: release-5-5~1248 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b5c5f09b16de9538300fe3d8c2dceca77be3b2f7;p=ack.git moved some static declarations that were illegal ANSI C --- diff --git a/lang/m2/comp/chk_expr.c b/lang/m2/comp/chk_expr.c index 90da07971..faea75ef4 100644 --- a/lang/m2/comp/chk_expr.c +++ b/lang/m2/comp/chk_expr.c @@ -719,6 +719,9 @@ ChkFunCall(expp) return 0; } +STATIC int ChkStandard(); +STATIC int ChkCast(); + int ChkCall(expp) register t_node *expp; @@ -728,8 +731,6 @@ ChkCall(expp) it may also be a cast or a standard procedure call. */ register t_node *left = expp->nd_left; - STATIC int ChkStandard(); - STATIC int ChkCast(); /* First, get the name of the function or procedure */