1 /**********
2 Copyright 1990 Regents of the University of California.  All rights reserved.
3 Author: 1985 Thomas L. Quarles
4 **********/
5 
6 #include "ngspice/ngspice.h"
7 #include "ngspice/ifsim.h"
8 #include "ngspice/iferrmsg.h"
9 #include "ngspice/trcvdefs.h"
10 #include "ngspice/cktdefs.h"
11 
12 
13 /* ARGSUSED */
14 int
TFaskQuest(CKTcircuit * ckt,JOB * anal,int which,IFvalue * value)15 TFaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
16 {
17     NG_IGNORE(value);
18     NG_IGNORE(anal);
19     NG_IGNORE(ckt);
20 
21     switch(which) {
22 
23     default:
24 	break;
25     }
26     return(E_BADPARM);
27 }
28 
29