]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
entered into RCS
authorRoland McGrath <roland@gnu.org>
Mon, 14 Feb 1994 16:04:07 +0000 (16:04 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 14 Feb 1994 16:04:07 +0000 (16:04 +0000)
sysdeps/m68k/fpu/acos.c
sysdeps/m68k/fpu/atan2.c
sysdeps/m68k/fpu/drem.c
sysdeps/m68k/fpu/fmod.c
sysdeps/m68k/fpu/isinf.c
sysdeps/m68k/fpu/ldexp.c
sysdeps/m68k/fpu/logb.c
sysdeps/m68k/fpu/pow.c

index e051fd4e2755edafc89ab24464990e0758ffbf7a..d4be88f17c01719991861ae11fe845841d94bf3d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@ Cambridge, MA 02139, USA.  */
 #endif
 
 
-double
+__CONSTVALUE double
 DEFUN(FUNC, (x), double x)
 {
   return __m81_u(FUNC)(x);
index e937833aa0eaa23e69dea3f45aa233c5ea6c5338..1efdb1f7a6046c1fa08931cf6ecc27a48f544c52 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@ Cambridge, MA 02139, USA.  */
 
 #ifdef __GNUC__
 
-double
+__CONSTVALUE double
 DEFUN(atan2, (y, x), double y AND double x)
 {
   static CONST double one = 1.0, zero = 0.0;
index 8ca7598f6bc68d9ea9f8e396fd307d890a25a156..b3efffb777861eb76c88abb5c018d646bda55fa5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -22,7 +22,7 @@ Cambridge, MA 02139, USA.  */
 
 #undef drem
 
-double
+__CONSTVALUE double
 DEFUN(__drem, (x, y), double x AND double y)
 {
   return ____drem(x, y);
index c5f1b5abae2633eaa51d6c6fd2a045493bd760aa..9a6c8cd16251e7e10fc78c39cca3fd3ef8236373 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA.  */
 #define        __NO_MATH_INLINES
 #include <math.h>
 
-double
+__CONSTVALUE double
 DEFUN(fmod, (x, y), double x AND double y)
 {
   return __fmod(x, y);
index 194c5a67600f370479a9c25e63629852ae196e0a..c816dcd0675c02377fe0b741ec33f4565ed85cbc 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@ Cambridge, MA 02139, USA.  */
 #endif
 
 
-int
+__CONSTVALUE int
 DEFUN(FUNC, (x), double x)
 {
   return __m81_u(FUNC)(x);
index 37d7b6d3eeb9f907e72fae344c6c2567ec2a22d8..ba912805d61ca0ff71e6a1626e094effc401f6b8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA.  */
 #define        __NO_MATH_INLINES
 #include <math.h>
 
-double
+__CONSTVALUE double
 DEFUN(ldexp, (x, exp), double x AND int exp)
 {
   return __ldexp(x, exp);
index df3de1ceee6346561582c788d370d8d2ddb24337..27ce1048fdd20d1080a19a37300be067aefad46e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -22,7 +22,8 @@ Cambridge, MA 02139, USA.  */
 #ifdef __GNUC__
 
 /* Return the base 2 signed integral exponent of X.  */
-double
+
+__CONSTVALUE double
 DEFUN(__logb, (x), double x)
 {
   if (__isnan (x))
index aa9d559f1d80f9d149c3e1e7b9845ff0c810d125..3360020f1d75ef63d45fdc956ad94c7e3840f42a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA.  */
 #define        __NO_MATH_INLINES
 #include <math.h>
 
-double
+__CONSTVALUE double
 DEFUN(pow, (x, y), double x AND double y)
 {
   return __pow(x, y);