mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 14:39:37 +00: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);
|
||
|
}
|