ngspice/src/frontend/dvec.c

17 lines
218 B
C
Raw Normal View History

#include "ngspice/ngspice.h"
#include "ngspice/dvec.h"
struct dvec *
dvec_alloc(void)
{
struct dvec *rv = TMALLOC(struct dvec, 1);
if (!rv)
return NULL;
ZERO(rv, struct dvec);
return rv;
}