diff --git a/src/main.c b/src/main.c index 7923c6201..11dfc27e3 100644 --- a/src/main.c +++ b/src/main.c @@ -365,6 +365,12 @@ com_snsave(wordlist *wl) NG_IGNORE(wl); } +void +com_optran(wordlist *wl) +{ + NG_IGNORE(wl); +} + void SMPprint(SMPmatrix *n1, char *n2) { @@ -428,6 +434,12 @@ EVTswitch_plot(CKTcircuit* ckt, const char* plottypename) return 1; }; +void +EVTsave(wordlist* wl) +{ + NG_IGNORE(wl); +} + int load_opus(const char *name) { diff --git a/src/ngsconvert.c b/src/ngsconvert.c index 79d5563ae..00dca03c7 100644 --- a/src/ngsconvert.c +++ b/src/ngsconvert.c @@ -38,6 +38,7 @@ struct plot *plot_cur = NULL; int cp_maxhistlength = 0; bool cp_no_histsubst = FALSE; struct compat newcompat; +bool cx_degrees = FALSE; char *cp_program = "sconvert";