incomptibility to MAC OSX removed
This commit is contained in:
parent
e1a2f5f66a
commit
67bf8c93cc
|
|
@ -1,3 +1,7 @@
|
||||||
|
2009-01-31 Holger Vogt
|
||||||
|
* xpressn.c, spicenum.c, numparam.h, runcoms.c, runcoms2.c:
|
||||||
|
Incompatibilty to MAC OSX removed by proper variable declarations
|
||||||
|
|
||||||
2009-01-26 Lionel Sainte Cluque
|
2009-01-26 Lionel Sainte Cluque
|
||||||
* man/man1/ngspice.1,
|
* man/man1/ngspice.1,
|
||||||
* man/man1/nutmeg.1:
|
* man/man1/nutmeg.1:
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ static char *linestyle[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static FILE *plotfile;
|
static FILE *plotfile;
|
||||||
char psfont[128], psfontsize[32], psscale[32];
|
extern char psscale[32];
|
||||||
static int fontwidth = FONTWIDTH;
|
static int fontwidth = FONTWIDTH;
|
||||||
static int fontheight = FONTHEIGHT;
|
static int fontheight = FONTHEIGHT;
|
||||||
static int jgmult = 10;
|
static int jgmult = 10;
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,3 @@ void nupa_subcktexit( tdico *dico);
|
||||||
tdico * nupa_fetchinstance(void);
|
tdico * nupa_fetchinstance(void);
|
||||||
char getidtype( tdico *d, char * s);
|
char getidtype( tdico *d, char * s);
|
||||||
int attrib( tdico *dico, char * t, char op );
|
int attrib( tdico *dico, char * t, char op );
|
||||||
|
|
||||||
char *nupa_inst_name;
|
|
||||||
tdico *inst_dico;
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,9 @@ Todo:
|
||||||
|
|
||||||
extern void txfree (void *ptr);
|
extern void txfree (void *ptr);
|
||||||
|
|
||||||
|
char *nupa_inst_name;
|
||||||
|
static tdico *inst_dico;
|
||||||
|
|
||||||
/* Uncomment this line to allow debug tracing */
|
/* Uncomment this line to allow debug tracing */
|
||||||
/* #define TRACE_NUMPARAMS */
|
/* #define TRACE_NUMPARAMS */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ extern double gauss();
|
||||||
static Str (150, keys); /* all my keywords */
|
static Str (150, keys); /* all my keywords */
|
||||||
static Str (150, fmath); /* all math functions */
|
static Str (150, fmath); /* all math functions */
|
||||||
|
|
||||||
|
extern char *nupa_inst_name; /* see spicenum.c */
|
||||||
|
|
||||||
static double
|
static double
|
||||||
ternary_fcn (int conditional, double if_value, double else_value)
|
ternary_fcn (int conditional, double if_value, double else_value)
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ $Id$
|
||||||
#include "inpdefs.h"
|
#include "inpdefs.h"
|
||||||
|
|
||||||
#define RAWBUF_SIZE 32768
|
#define RAWBUF_SIZE 32768
|
||||||
char rawfileBuf[RAWBUF_SIZE];
|
extern char rawfileBuf[RAWBUF_SIZE];
|
||||||
|
|
||||||
/* Continue a simulation. If there is non in progress, this is the
|
/* Continue a simulation. If there is non in progress, this is the
|
||||||
* equivalent of "run".
|
* equivalent of "run".
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue