gcc/libf2c/libF77/r_imag.c

8 lines
67 B
C

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