mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
13 lines
165 B
C
13 lines
165 B
C
|
|
#include "f2c.h"
|
||
|
|
|
||
|
|
VOID
|
||
|
|
#ifdef KR_headers
|
||
|
|
d_cnjg(r, z) doublecomplex *r, *z;
|
||
|
|
#else
|
||
|
|
d_cnjg(doublecomplex *r, doublecomplex *z)
|
||
|
|
#endif
|
||
|
|
{
|
||
|
|
r->r = z->r;
|
||
|
|
r->i = - z->i;
|
||
|
|
}
|