gcc/libf2c/libF77/d_imag.c

7 lines
68 B
C
Raw Normal View History

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