pkgsrc/cad/simian/patches/patch-ai
dmcmahill cc1cd37483 Get this going with sunpro compilers. Gets rid of
Error: An integer constant expression is required within the array subscript operator.
VS: ----------------------------------------------------------------------
2007-01-22 17:41:17 +00:00

12 lines
371 B
Text

$NetBSD: patch-ai,v 1.1 2007/01/22 17:41:17 dmcmahill Exp $
fix prototype to match what the function actually is. Without this
linking fails on sunpro
--- src/incident.h.orig 1998-12-07 03:28:51.000000000 -0500
+++ src/incident.h
@@ -1,3 +1,3 @@
complex **Zequ(Conductor *c,int numsgn,int Nc);
-complex **ysort(int Nc,int n,int m);
+void ysort(int Nc,int n,int m);