]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/alpha/__math.h (__copysign): Use attribute instead of old ...
authorBrendan Kehoe <brendan@zen.org>
Fri, 10 Mar 1995 02:10:40 +0000 (02:10 +0000)
committerBrendan Kehoe <brendan@zen.org>
Fri, 10 Mar 1995 02:10:40 +0000 (02:10 +0000)
* sysdeps/alpha/__math.h (__copysign): Use attribute instead of old
__CONSTVALUE by adding forward decl first with the const attribute.

ChangeLog
sysdeps/alpha/__math.h

index f56d429064dab5ed4e76d9a5634d412c72c9cf10..5db7a446fc109a3751b27e35fc468f2ded0640cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Thu Mar  9 17:16:53 1995  Brendan Kehoe  (brendan@zen.org)
 
+       * sysdeps/alpha/__math.h (__copysign): Use attribute instead of old
+       __CONSTVALUE by adding forward decl first with the const attribute.
+
        * configure.in: Match `osf*', not `osf1*'.
        * configure: Likewise.
        * sysdeps/unix/bsd/osf: Renamed from `sysdeps/unix/bsd/osf1'.
index b06f716c50b0184453f7815b8bd0e5f23d35ba91..06e43dbf0472da5fd39e771db611a46cd83bbedd 100644 (file)
@@ -18,7 +18,9 @@ Cambridge, MA 02139, USA.  */
 
 #if defined (__GNUC__) && !defined (__NO_MATH_INLINES)
 
-extern __inline __CONSTVALUE double
+extern __inline double __copysign (double __x, double __y) __attribute__ ((__const__));
+
+extern __inline double
 __copysign (double __x, double __y)
 {
   __asm ("cpys %1, %2, %0" : "=f" (__x) : "f" (__y), "f" (__x));
This page took 0.051497 seconds and 5 git commands to generate.