From bbeb8e278aae8df1de09929ce552c13f242c5d19 Mon Sep 17 00:00:00 2001 From: das Date: Tue, 18 Dec 2007 01:15:20 +0000 Subject: 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 --- lib/msun/src/w_cabs.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lib/msun/src') diff --git a/lib/msun/src/w_cabs.c b/lib/msun/src/w_cabs.c index a33a41f..d00e76e 100644 --- a/lib/msun/src/w_cabs.c +++ b/lib/msun/src/w_cabs.c @@ -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)); -} -- cgit v1.1