Browse Source

Compile only when RFSPICE is selected in config.h

pre-master-46
Holger Vogt 4 years ago
parent
commit
61797c9317
  1. 6
      src/spicelib/analysis/cktspdum.c

6
src/spicelib/analysis/cktspdum.c

@ -8,6 +8,8 @@ Author: 1985 Thomas L. Quarles
* into the rawfile.
*/
#include "ngspice/ngspice.h"
#include "ngspice/smpdefs.h"
#include "ngspice/cktdefs.h"
@ -15,6 +17,8 @@ Author: 1985 Thomas L. Quarles
#include "ngspice/ifsim.h"
#include "vsrc/vsrcdefs.h"
#ifdef RFSPICE
extern CMat* eyem;
extern CMat* zref;
extern CMat* gn;
@ -214,3 +218,5 @@ CKTspDump(CKTcircuit *ckt, double freq, runDesc *plot, unsigned int doNoise)
FREE(data);
return(OK);
}
#endif
Loading…
Cancel
Save