|
|
|
@ -36,7 +36,7 @@ INTERFACES |
|
|
|
cm_complex_subtract() |
|
|
|
cm_complex_multiply() |
|
|
|
cm_complex_divide() |
|
|
|
|
|
|
|
cm_cexit() |
|
|
|
|
|
|
|
REFERENCED FILES |
|
|
|
|
|
|
|
@ -51,6 +51,8 @@ NON-STANDARD FEATURES |
|
|
|
#include <stdio.h> |
|
|
|
#include <math.h> |
|
|
|
#include "ngspice/cm.h" |
|
|
|
|
|
|
|
extern void controlled_exit(const int); |
|
|
|
|
|
|
|
/* Corner Smoothing Function ************************************ |
|
|
|
* * |
|
|
|
@ -525,4 +527,7 @@ Complex_t cm_complex_divide(Complex_t x, Complex_t y) |
|
|
|
return(c); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void cm_cexit(const int exitcode) |
|
|
|
{ |
|
|
|
controlled_exit(exitcode); |
|
|
|
} |