Remove z_abs(). The z_*() functions were in libf77, and for some reason
someone thought it would be a good idea to copy z_abs() to libm in 1994. However, it's never been declared or documented anywhere, and I'm reasonably confident that nobody uses it. Discussed with: bde, deischen, kan
This commit is contained in:
parent
81186fb40c
commit
0ba1fd2f72
@ -178,7 +178,6 @@ FBSD_1.0 {
|
||||
truncf;
|
||||
truncl;
|
||||
cabs;
|
||||
z_abs;
|
||||
cabsf;
|
||||
drem;
|
||||
dremf;
|
||||
|
@ -19,10 +19,3 @@ cabs(z)
|
||||
{
|
||||
return hypot(creal(z), cimag(z));
|
||||
}
|
||||
|
||||
double
|
||||
z_abs(z)
|
||||
double complex *z;
|
||||
{
|
||||
return hypot(creal(*z), cimag(*z));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user