mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
15 lines
205 B
C
15 lines
205 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
extern double f__cabs();
|
||
|
|
||
|
double c_abs(z) complex *z;
|
||
|
#else
|
||
|
extern double f__cabs(double, double);
|
||
|
|
||
|
double c_abs(complex *z)
|
||
|
#endif
|
||
|
{
|
||
|
return( f__cabs( z->r, z->i ) );
|
||
|
}
|