From 22ffeee2a4ae15563da6f2e0cfa462a2884b9c0d Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Fri, 18 Jul 2025 18:41:04 +0100 Subject: [PATCH] extcheck: forward declaration arguments added --- extcheck/extcheck.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extcheck/extcheck.c b/extcheck/extcheck.c index 783faf83..91b44222 100644 --- a/extcheck/extcheck.c +++ b/extcheck/extcheck.c @@ -50,7 +50,10 @@ int ecNumNodeCaps; int ecNumNodeResists; /* Forward declarations */ -int nodeVisit(), devVisit(), capVisit(), resistVisit(); +int nodeVisit(EFNode *node, int res, double cap); +int devVisit(void); +int capVisit(HierName *hn1, HierName *hn2, double cap); +int resistVisit(HierName *hn1, HierName *hn2, float res); /* * ----------------------------------------------------------------------------