mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 21:09:28 +00: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 ) );
|
||
|
}
|