diff --git a/ChangeLog b/ChangeLog index d2bace790..9766c23a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-10-16 Robert Larice + * src/ciderlib/oned/oneadmit.c , + * src/ciderlib/oned/onesolve.c : + remove local prototypes, which are already included + 2010-10-16 Robert Larice * src/include/ngspice.h : remove prototypes, avoid redeclarations diff --git a/src/ciderlib/oned/oneadmit.c b/src/ciderlib/oned/oneadmit.c index dea81fc0f..8a2871d25 100644 --- a/src/ciderlib/oned/oneadmit.c +++ b/src/ciderlib/oned/oneadmit.c @@ -31,11 +31,6 @@ extern IFfrontEnd *SPfrontEnd; SPcomplex yAc; -/* Forward Declarations */ -SPcomplex *computeAdmittance(ONEnode *, BOOLEAN, double *, - double *, SPcomplex *); -BOOLEAN ONEsorSolve(ONEdevice *pDevice, double *xReal, - double *xImag, double omega); int NUMDadmittance(ONEdevice *pDevice, double omega, SPcomplex *yd) diff --git a/src/ciderlib/oned/onesolve.c b/src/ciderlib/oned/onesolve.c index 410c1146a..74431b43d 100644 --- a/src/ciderlib/oned/onesolve.c +++ b/src/ciderlib/oned/onesolve.c @@ -27,18 +27,6 @@ extern IFfrontEnd *SPfrontEnd; -/* Forward Declarations */ -void ONEdcSolve(ONEdevice *, int, BOOLEAN, BOOLEAN, ONEtranInfo *); -BOOLEAN ONEpsiDeltaConverged(ONEdevice *, int *); -BOOLEAN ONEdeltaConverged(ONEdevice *); -int ONEnewDelta(ONEdevice *, BOOLEAN , ONEtranInfo *); -void ONEstoreNeutralGuess(ONEdevice *); -void ONEstoreEquilibGuess(ONEdevice *); -void ONEstoreInitialGuess(ONEdevice *pDevice); -double ONEnuNorm(ONEdevice *); -void ONEjacCheck(ONEdevice *, BOOLEAN , ONEtranInfo *); - - /* The iteration driving loop and convergence check */ void ONEdcSolve(ONEdevice *pDevice, int iterationLimit, BOOLEAN newSolver,