mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 03:58:58 +08:00
11 lines
134 B
C
11 lines
134 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
double d_imag(z) doublecomplex *z;
|
||
|
#else
|
||
|
double d_imag(doublecomplex *z)
|
||
|
#endif
|
||
|
{
|
||
|
return(z->i);
|
||
|
}
|