gcc/libf2c/libF77/r_imag.c

7 lines
62 B
C
Raw Normal View History

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