mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
9 lines
123 B
C
9 lines
123 B
C
#include "f2c.h"
|
|
|
|
extern double f__cabs (double, double);
|
|
|
|
double
|
|
c_abs (complex * z)
|
|
{
|
|
return (f__cabs (z->r, z->i));
|
|
}
|