some .c file local prototypes
This commit is contained in:
parent
36b9d794df
commit
4d31d2a12f
|
|
@ -1,3 +1,11 @@
|
|||
2010-10-08 Robert Larice
|
||||
* src/frontend/dotcards.c ,
|
||||
* src/frontend/numparam/spicenum.c ,
|
||||
* src/frontend/numparam/xpressn.c ,
|
||||
* src/maths/misc/randnumb.c ,
|
||||
* src/spicelib/parser/inplist.c :
|
||||
some .c file local prototypes
|
||||
|
||||
2010-10-08 Robert Larice
|
||||
* src/maths/cmaths/cmath2.h :
|
||||
cx_avg() prototype
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ $Id$
|
|||
static void fixdotplot(wordlist *wl);
|
||||
static void fixdotprint(wordlist *wl);
|
||||
static char * fixem(char *string);
|
||||
void ft_savemeasure(void);
|
||||
|
||||
|
||||
static struct plot *
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ Todo:
|
|||
#include "../error.h" /* controlled_exit() */
|
||||
|
||||
extern void txfree (void *ptr);
|
||||
void dump_symbols(tdico *dico_p);
|
||||
|
||||
char *nupa_inst_name;
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@
|
|||
extern double gauss(void);
|
||||
extern COMPATMODE_T ngspice_compat_mode(void) ;
|
||||
|
||||
void debugwarn(tdico *d, char *s);
|
||||
|
||||
/************ keywords ************/
|
||||
|
||||
/* SJB - 150 chars is ample for this - see initkeys() */
|
||||
|
|
|
|||
|
|
@ -63,7 +63,9 @@ static unsigned LGCS(unsigned *state, unsigned A1, unsigned A2);
|
|||
|
||||
void TausSeed(void);
|
||||
double CombLCGTaus(void);
|
||||
float CombLCGTaus2(void);
|
||||
unsigned int CombLCGTausInt(void);
|
||||
unsigned int CombLCGTausInt2(void);
|
||||
|
||||
void checkseed(void);
|
||||
double drand(void);
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ Author: 1985 Thomas L. Quarles
|
|||
#include "inpdefs.h"
|
||||
#include "inp.h"
|
||||
|
||||
extern void INPlist(FILE *file, card *deck, int type); /* nowhere used function */
|
||||
|
||||
void INPlist(FILE * file, card * deck, int type)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue