8 lines
65 B
C
8 lines
65 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double r_imag(z)
|
||
|
complex *z;
|
||
|
{
|
||
|
return(z->i);
|
||
|
}
|