mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 15:35:10 -04:00
11 lines
122 B
C
11 lines
122 B
C
|
|
#include "f2c.h"
|
||
|
|
|
||
|
|
#ifdef KR_headers
|
||
|
|
double r_imag(z) complex *z;
|
||
|
|
#else
|
||
|
|
double r_imag(complex *z)
|
||
|
|
#endif
|
||
|
|
{
|
||
|
|
return(z->i);
|
||
|
|
}
|