From 9595dda6b508c2e2e06d5841cbd66fe4f7e30823 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 15 Feb 1991 14:21:41 +0000 Subject: [PATCH] Fixed: contained construction that was illegal for ANSI C --- lang/pc/comp/chk_expr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/pc/comp/chk_expr.c b/lang/pc/comp/chk_expr.c index 563321676..f10ef4764 100644 --- a/lang/pc/comp/chk_expr.c +++ b/lang/pc/comp/chk_expr.c @@ -884,6 +884,8 @@ ChkProcCall(expp) return retval; } +STATIC int ChkStandard(); + int ChkCall(expp) register struct node *expp; @@ -896,7 +898,6 @@ ChkCall(expp) /* First, get the name of the function or procedure */ register struct node *left = expp->nd_left; - STATIC int ChkStandard(); expp->nd_type = error_type; -- 2.34.1