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:
David Schultz 2007-12-18 01:15:20 +00:00
parent 81186fb40c
commit 0ba1fd2f72
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174732
2 changed files with 0 additions and 8 deletions

View File

@ -178,7 +178,6 @@ FBSD_1.0 {
truncf;
truncl;
cabs;
z_abs;
cabsf;
drem;
dremf;

View File

@ -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));
}