mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
10 lines
123 B
C
10 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));
|
|
}
|