From: Roland McGrath Date: Tue, 19 Mar 1996 20:13:37 +0000 (+0000) Subject: Mon Mar 4 20:17:28 1996 David Mosberger-Tang X-Git-Tag: glibc-2.16-ports-before-merge~3853 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=437909194b3ec37ba0ad98d1adb44302495bf163;p=thirdparty%2Fglibc.git Mon Mar 4 20:17:28 1996 David Mosberger-Tang * sysdeps/alpha/__math.h (atan, cabs): New functions. --- diff --git a/sysdeps/alpha/__math.h b/sysdeps/alpha/__math.h index 5461fca2ac9..9aea9d70976 100644 --- a/sysdeps/alpha/__math.h +++ b/sysdeps/alpha/__math.h @@ -1,5 +1,7 @@ -/* Copyright (C) 1992 Free Software Foundation, Inc. +/* Inline math functions for Alpha. +Copyright (C) 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. +Contributed by David Mosberger-Tang. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -32,4 +34,20 @@ fabs (double __x) return __x; } +extern __inline double +atan (double __x) +{ + extern double __atan2 (double, double); + return __atan2 (__x, 1.0); +} + +#ifdef __USE_MISC +extern __inline double +cabs (struct __cabs_complex __z) +{ + extern double __hypot (double, double); + return __hypot(__z.__x, __z.__y); +} +#endif + #endif