2021-10-11 18:20:23 -03:00

14 lines
179 B
C

#ifndef lint
static char sccsid[] = "@(#)d_imag.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */
#endif
/*
*/
#include "complex.h"
double d_imag(z)
dcomplex *z;
{
return(z->dimag);
}