From 66976d492e5d430d31535b8b960e026e432e0a6f Mon Sep 17 00:00:00 2001 From: rlar Date: Sun, 8 Jan 2017 18:22:19 +0100 Subject: [PATCH] inpgmod.c, #10/15, reorder 'extern's --- src/spicelib/parser/inpgmod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spicelib/parser/inpgmod.c b/src/spicelib/parser/inpgmod.c index 66425a578..e5b475520 100644 --- a/src/spicelib/parser/inpgmod.c +++ b/src/spicelib/parser/inpgmod.c @@ -18,11 +18,11 @@ Modified: 2001 Paolo Nenzi (Cider Integration) #include "ngspice/numgen.h" #include "ngspice/suffix.h" -extern IFcardInfo *INPcardTab[]; -extern int INPnumCards; #define E_MISSING -1 #define E_AMBIGUOUS -2 +extern IFcardInfo *INPcardTab[]; +extern int INPnumCards; static int INPparseNumMod( CKTcircuit* ckt, INPmodel *model, INPtables *tab, char **errMessage ); static int INPfindCard( char *name, IFcardInfo *table[], int numCards ); static int INPfindParm( char *name, IFparm *table, int numParms );