few fixes for prototypes

This commit is contained in:
dwarning 2020-10-15 18:25:25 +02:00
parent ac4aa9dd8f
commit 75228612c0
3 changed files with 3 additions and 2 deletions

View File

@ -18,3 +18,5 @@ double NewWa(void); /* generate new pool, return outgauss[0] */
#define GaussWa ((--variate_used)?(outgauss[variate_used]*ScaleGauss):NewWa())
void PolarGauss(double* py1, double* py2);
void destroy_wallace(void);

View File

@ -14,8 +14,6 @@ VDMOS: 2018 Holger Vogt, 2020 Dietmar Warning
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
void VDMOStempUpdate(VDMOSmodel *inModel, VDMOSinstance *here, double Temp, CKTcircuit *ckt);
int
VDMOSload(GENmodel *inModel, CKTcircuit *ckt)
/* actually load the current value into the

View File

@ -42,6 +42,7 @@ NON-STANDARD FEATURES
/*=== INCLUDE FILES ====================*/
#include <stdlib.h>
#include <math.h>