diff --git a/cif/CIFrdpt.c b/cif/CIFrdpt.c index 584679ad..ad61c331 100644 --- a/cif/CIFrdpt.c +++ b/cif/CIFrdpt.c @@ -237,6 +237,7 @@ void CIFPropRecordPath(def, pathheadp, iswire, propname) CellDef *def; CIFPath *pathheadp; + bool iswire; char *propname; { extern float CIFGetOutputScale(); diff --git a/commands/CmdLQ.c b/commands/CmdLQ.c index 384144b8..6f0cc58e 100644 --- a/commands/CmdLQ.c +++ b/commands/CmdLQ.c @@ -2228,6 +2228,7 @@ void CmdDoProperty(def, cmd, argstart) CellDef *def; TxCommand *cmd; + int argstart; { int printPropertiesFunc(); char *value; diff --git a/extflat/EFread.c b/extflat/EFread.c index 302eee73..15d5b43a 100644 --- a/extflat/EFread.c +++ b/extflat/EFread.c @@ -132,7 +132,7 @@ static bool efReadDef(); bool EFReadFile(name, dosubckt, resist, noscale) char *name; /* Name of def to be read in */ - bool dosubckt, resist; + bool dosubckt, resist, noscale; { Def *def; bool rc; diff --git a/extract/ExtMain.c b/extract/ExtMain.c index 022d3aac..27b9e2d1 100644 --- a/extract/ExtMain.c +++ b/extract/ExtMain.c @@ -660,6 +660,7 @@ struct saveList { void extExtractStack(stack, doExtract, rootDef) Stack *stack; + bool doExtract; CellDef *rootDef; { int errorcnt = 0, warnings = 0; diff --git a/net2ir/net2ir.c b/net2ir/net2ir.c index 758e3324..4410be6c 100644 --- a/net2ir/net2ir.c +++ b/net2ir/net2ir.c @@ -47,6 +47,7 @@ typedef struct int main(argc, argv) + int argc; char *argv[]; { char line1[LINESIZE], line2[LINESIZE], layer[LINESIZE], label[LINESIZE]; diff --git a/plow/PlowMain.c b/plow/PlowMain.c index e560c0ea..b19b621f 100644 --- a/plow/PlowMain.c +++ b/plow/PlowMain.c @@ -1940,6 +1940,7 @@ plowMoveEdge(edge) Tile * plowSplitY(tp, y) Tile *tp; + int y; { Tile *newTile; diff --git a/router/rtrPin.c b/router/rtrPin.c index 3ae0f8a1..dc74397c 100644 --- a/router/rtrPin.c +++ b/router/rtrPin.c @@ -88,6 +88,7 @@ RtrPinsInit(ch) int rtrPinArrayInit(ch, side, pins, nPins) GCRChannel *ch; + int side; GCRPin *pins; int nPins; { diff --git a/router/rtrStem.c b/router/rtrStem.c index 8510d186..bef21564 100644 --- a/router/rtrStem.c +++ b/router/rtrStem.c @@ -1237,15 +1237,17 @@ bool RtrComputeJogs(loc, stem, dir, contact, jog, start, width) NLTermLoc *loc; /* Terminal whose stem is to be painted */ Point *stem; /* Point intersecting channel*/ - Point *start; /* Somewhere along terminal area */ - Point *jog; /* Where the stem crosses the first usable - * grid line as it runs out from the cell. - */ + int dir; Point *contact; /* A second grid point, where a contact can * be placed if necessary. This is a the * nearest grid crossing to crossing outside * the channel. */ + Point *jog; /* Where the stem crosses the first usable + * grid line as it runs out from the cell. + */ + Point *start; /* Somewhere along terminal area */ + int width; { Rect *area; area = &loc->nloc_rect;