You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
458 B
22 lines
458 B
/**********
|
|
Copyright 1991 Regents of the University of California. All rights reserved.
|
|
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
|
|
**********/
|
|
|
|
/*
|
|
* This routine deletes a NUMOS instance from the circuit and frees the
|
|
* storage it was using.
|
|
*/
|
|
|
|
#include "ngspice/ngspice.h"
|
|
#include "numosdef.h"
|
|
#include "ngspice/sperror.h"
|
|
#include "ngspice/suffix.h"
|
|
|
|
|
|
int
|
|
NUMOSdelete(GENinstance *gen_inst)
|
|
{
|
|
NG_IGNORE(gen_inst);
|
|
return OK;
|
|
}
|