Browse Source

incomptibility to MAC OSX removed

pre-master-46
h_vogt 17 years ago
parent
commit
67bf8c93cc
  1. 4
      ChangeLog
  2. 2
      src/frontend/hpgl.c
  3. 4
      src/frontend/numparam/numparam.h
  4. 3
      src/frontend/numparam/spicenum.c
  5. 1
      src/frontend/numparam/xpressn.c
  6. 2
      src/frontend/runcoms2.c

4
ChangeLog

@ -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
* man/man1/ngspice.1,
* man/man1/nutmeg.1:

2
src/frontend/hpgl.c

@ -75,7 +75,7 @@ static char *linestyle[] = {
};
static FILE *plotfile;
char psfont[128], psfontsize[32], psscale[32];
extern char psscale[32];
static int fontwidth = FONTWIDTH;
static int fontheight = FONTHEIGHT;
static int jgmult = 10;

4
src/frontend/numparam/numparam.h

@ -76,7 +76,3 @@ void nupa_subcktexit( tdico *dico);
tdico * nupa_fetchinstance(void);
char getidtype( tdico *d, char * s);
int attrib( tdico *dico, char * t, char op );
char *nupa_inst_name;
tdico *inst_dico;

3
src/frontend/numparam/spicenum.c

@ -29,6 +29,9 @@ Todo:
extern void txfree (void *ptr);
char *nupa_inst_name;
static tdico *inst_dico;
/* Uncomment this line to allow debug tracing */
/* #define TRACE_NUMPARAMS */

1
src/frontend/numparam/xpressn.c

@ -19,6 +19,7 @@ extern double gauss();
static Str (150, keys); /* all my keywords */
static Str (150, fmath); /* all math functions */
extern char *nupa_inst_name; /* see spicenum.c */
static double
ternary_fcn (int conditional, double if_value, double else_value)

2
src/frontend/runcoms2.c

@ -25,7 +25,7 @@ $Id$
#include "inpdefs.h"
#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
* equivalent of "run".

Loading…
Cancel
Save