12 lines
155 B
C
12 lines
155 B
C
|
|
#include "ngspice/ngspice.h"
|
||
|
|
#include "ngspice/dvec.h"
|
||
|
|
|
||
|
|
|
||
|
|
struct dvec *
|
||
|
|
dvec_alloc(void)
|
||
|
|
{
|
||
|
|
struct dvec *rv = TMALLOC(struct dvec, 1);
|
||
|
|
|
||
|
|
return rv;
|
||
|
|
}
|