gcc/libf2c/libF77/d_imag.c

8 lines
73 B
C

#include "f2c.h"
double
d_imag (doublecomplex * z)
{
return (z->i);
}