mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
9 lines
108 B
C
9 lines
108 B
C
#include "f2c.h"
|
|
|
|
void
|
|
r_cnjg (complex * r, complex * z)
|
|
{
|
|
real zi = z->i;
|
|
r->r = z->r;
|
|
r->i = -zi;
|
|
}
|