|
|
@ -237,10 +237,10 @@ IFfrontEnd nutmeginfo; |
|
|
int |
|
|
int |
|
|
if_run(CKTcircuit *t, char *w, wordlist *s, INPtables *b) |
|
|
if_run(CKTcircuit *t, char *w, wordlist *s, INPtables *b) |
|
|
{ |
|
|
{ |
|
|
IGNORE(b); |
|
|
|
|
|
IGNORE(s); |
|
|
|
|
|
IGNORE(w); |
|
|
|
|
|
IGNORE(t); |
|
|
|
|
|
|
|
|
NG_IGNORE(b); |
|
|
|
|
|
NG_IGNORE(s); |
|
|
|
|
|
NG_IGNORE(w); |
|
|
|
|
|
NG_IGNORE(t); |
|
|
|
|
|
|
|
|
return (0); |
|
|
return (0); |
|
|
} |
|
|
} |
|
|
@ -249,9 +249,9 @@ if_run(CKTcircuit *t, char *w, wordlist *s, INPtables *b) |
|
|
int |
|
|
int |
|
|
if_sens_run(CKTcircuit *t, wordlist *args, INPtables *tab) |
|
|
if_sens_run(CKTcircuit *t, wordlist *args, INPtables *tab) |
|
|
{ |
|
|
{ |
|
|
IGNORE(tab); |
|
|
|
|
|
IGNORE(args); |
|
|
|
|
|
IGNORE(t); |
|
|
|
|
|
|
|
|
NG_IGNORE(tab); |
|
|
|
|
|
NG_IGNORE(args); |
|
|
|
|
|
NG_IGNORE(t); |
|
|
|
|
|
|
|
|
return (0); |
|
|
return (0); |
|
|
} |
|
|
} |
|
|
@ -260,8 +260,8 @@ if_sens_run(CKTcircuit *t, wordlist *args, INPtables *tab) |
|
|
void |
|
|
void |
|
|
if_dump(CKTcircuit *ckt, FILE *fp) |
|
|
if_dump(CKTcircuit *ckt, FILE *fp) |
|
|
{ |
|
|
{ |
|
|
IGNORE(fp); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(fp); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
@ -270,8 +270,8 @@ if_dump(CKTcircuit *ckt, FILE *fp) |
|
|
CKTcircuit * |
|
|
CKTcircuit * |
|
|
if_inpdeck(struct line *deck, INPtables **tab) |
|
|
if_inpdeck(struct line *deck, INPtables **tab) |
|
|
{ |
|
|
{ |
|
|
IGNORE(tab); |
|
|
|
|
|
IGNORE(deck); |
|
|
|
|
|
|
|
|
NG_IGNORE(tab); |
|
|
|
|
|
NG_IGNORE(deck); |
|
|
return NULL; |
|
|
return NULL; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@ -279,10 +279,10 @@ if_inpdeck(struct line *deck, INPtables **tab) |
|
|
int |
|
|
int |
|
|
if_option(CKTcircuit *ckt, char *name, enum cp_types type, void *value) |
|
|
if_option(CKTcircuit *ckt, char *name, enum cp_types type, void *value) |
|
|
{ |
|
|
{ |
|
|
IGNORE(value); |
|
|
|
|
|
IGNORE(type); |
|
|
|
|
|
IGNORE(name); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(value); |
|
|
|
|
|
NG_IGNORE(type); |
|
|
|
|
|
NG_IGNORE(name); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return 0; |
|
|
return 0; |
|
|
} |
|
|
} |
|
|
@ -290,8 +290,8 @@ if_option(CKTcircuit *ckt, char *name, enum cp_types type, void *value) |
|
|
/* -------------------------------------------------------------------------- */ |
|
|
/* -------------------------------------------------------------------------- */ |
|
|
void if_cktfree(CKTcircuit *ckt, INPtables *tab) |
|
|
void if_cktfree(CKTcircuit *ckt, INPtables *tab) |
|
|
{ |
|
|
{ |
|
|
IGNORE(tab); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(tab); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
@ -299,14 +299,14 @@ void if_cktfree(CKTcircuit *ckt, INPtables *tab) |
|
|
/* -------------------------------------------------------------------------- */ |
|
|
/* -------------------------------------------------------------------------- */ |
|
|
void if_setndnames(char *line) |
|
|
void if_setndnames(char *line) |
|
|
{ |
|
|
{ |
|
|
IGNORE(line); |
|
|
|
|
|
|
|
|
NG_IGNORE(line); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */ |
|
|
/* -------------------------------------------------------------------------- */ |
|
|
char * |
|
|
char * |
|
|
if_errstring(int code) |
|
|
if_errstring(int code) |
|
|
{ |
|
|
{ |
|
|
IGNORE(code); |
|
|
|
|
|
|
|
|
NG_IGNORE(code); |
|
|
return ("spice error"); |
|
|
return ("spice error"); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@ -314,9 +314,9 @@ if_errstring(int code) |
|
|
void |
|
|
void |
|
|
if_setparam_model(CKTcircuit *ckt, char **name, char *val) |
|
|
if_setparam_model(CKTcircuit *ckt, char **name, char *val) |
|
|
{ |
|
|
{ |
|
|
IGNORE(val); |
|
|
|
|
|
IGNORE(name); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(val); |
|
|
|
|
|
NG_IGNORE(name); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
@ -324,11 +324,11 @@ if_setparam_model(CKTcircuit *ckt, char **name, char *val) |
|
|
void |
|
|
void |
|
|
if_setparam(CKTcircuit *ckt, char **name, char *param, struct dvec *val, int do_model) |
|
|
if_setparam(CKTcircuit *ckt, char **name, char *param, struct dvec *val, int do_model) |
|
|
{ |
|
|
{ |
|
|
IGNORE(do_model); |
|
|
|
|
|
IGNORE(val); |
|
|
|
|
|
IGNORE(param); |
|
|
|
|
|
IGNORE(name); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(do_model); |
|
|
|
|
|
NG_IGNORE(val); |
|
|
|
|
|
NG_IGNORE(param); |
|
|
|
|
|
NG_IGNORE(name); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
@ -337,10 +337,10 @@ if_setparam(CKTcircuit *ckt, char **name, char *param, struct dvec *val, int do_ |
|
|
bool |
|
|
bool |
|
|
if_tranparams(struct circ *ckt, double *start, double *stop, double *step) |
|
|
if_tranparams(struct circ *ckt, double *start, double *stop, double *step) |
|
|
{ |
|
|
{ |
|
|
IGNORE(step); |
|
|
|
|
|
IGNORE(stop); |
|
|
|
|
|
IGNORE(start); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(step); |
|
|
|
|
|
NG_IGNORE(stop); |
|
|
|
|
|
NG_IGNORE(start); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return (FALSE); |
|
|
return (FALSE); |
|
|
} |
|
|
} |
|
|
@ -349,8 +349,8 @@ if_tranparams(struct circ *ckt, double *start, double *stop, double *step) |
|
|
struct variable * |
|
|
struct variable * |
|
|
if_getstat(CKTcircuit *ckt, char *name) |
|
|
if_getstat(CKTcircuit *ckt, char *name) |
|
|
{ |
|
|
{ |
|
|
IGNORE(name); |
|
|
|
|
|
IGNORE(ckt); |
|
|
|
|
|
|
|
|
NG_IGNORE(name); |
|
|
|
|
|
NG_IGNORE(ckt); |
|
|
|
|
|
|
|
|
return (NULL); |
|
|
return (NULL); |
|
|
} |
|
|
} |
|
|
@ -373,30 +373,30 @@ Ipc_Status_t ipc_send_errchk(void ) { |
|
|
} |
|
|
} |
|
|
Ipc_Status_t ipc_get_line(char *str , int *len , Ipc_Wait_t wait ){ |
|
|
Ipc_Status_t ipc_get_line(char *str , int *len , Ipc_Wait_t wait ){ |
|
|
Ipc_Status_t x = IPC_STATUS_OK; |
|
|
Ipc_Status_t x = IPC_STATUS_OK; |
|
|
IGNORE(str); |
|
|
|
|
|
IGNORE(len); |
|
|
|
|
|
IGNORE(wait); |
|
|
|
|
|
|
|
|
NG_IGNORE(str); |
|
|
|
|
|
NG_IGNORE(len); |
|
|
|
|
|
NG_IGNORE(wait); |
|
|
|
|
|
|
|
|
return(x); |
|
|
return(x); |
|
|
} |
|
|
} |
|
|
struct line *ENHtranslate_poly(struct line *deck){ |
|
|
struct line *ENHtranslate_poly(struct line *deck){ |
|
|
IGNORE(deck); |
|
|
|
|
|
|
|
|
NG_IGNORE(deck); |
|
|
return(NULL); |
|
|
return(NULL); |
|
|
} |
|
|
} |
|
|
int load_opus(char *name){ |
|
|
int load_opus(char *name){ |
|
|
IGNORE(name); |
|
|
|
|
|
|
|
|
NG_IGNORE(name); |
|
|
return(1); |
|
|
return(1); |
|
|
} |
|
|
} |
|
|
char *MIFgettok(char **s){ |
|
|
char *MIFgettok(char **s){ |
|
|
IGNORE(s); |
|
|
|
|
|
|
|
|
NG_IGNORE(s); |
|
|
return(NULL); |
|
|
return(NULL); |
|
|
} |
|
|
} |
|
|
void EVTprint(wordlist *wl){ |
|
|
void EVTprint(wordlist *wl){ |
|
|
IGNORE(wl); |
|
|
|
|
|
|
|
|
NG_IGNORE(wl); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
struct dvec *EVTfindvec(char *node){ |
|
|
struct dvec *EVTfindvec(char *node){ |
|
|
IGNORE(node); |
|
|
|
|
|
|
|
|
NG_IGNORE(node); |
|
|
return NULL; |
|
|
return NULL; |
|
|
} |
|
|
} |
|
|
#endif /* XSPICE */ |
|
|
#endif /* XSPICE */ |
|
|
|