1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
$NetBSD: patch-calma_CalmaRdcl.c,v 1.2 2013/03/07 22:05:12 joerg Exp $
--- calma/CalmaRdcl.c.orig 2013-03-02 22:21:58.000000000 +0000
+++ calma/CalmaRdcl.c
@@ -46,6 +46,8 @@ static char rcsid[] __attribute__ ((unus
#include "calma/calmaInt.h"
#include "calma/calma.h"
+void calmaReadError(char *format, ...);
+
int calmaNonManhattan;
extern void CIFPaintCurrent();
@@ -53,7 +55,7 @@ extern void CIFPaintCurrent();
extern HashTable calmaDefInitHash;
/* forward declarations */
-bool calmaElementSref();
+void calmaElementSref();
bool calmaParseElement();
/* Structure used when flattening the GDS hierarchy on read-in */
@@ -520,7 +522,7 @@ calmaParseElement(pnsrefs, pnpaths)
* ----------------------------------------------------------------------------
*/
-bool
+void
calmaElementSref()
{
int nbytes, rtype, cols, rows, nref, n, i, savescale;
|