mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 08:55:18 -04: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);
|
||
|
|
}
|