From: Roland McGrath Date: Tue, 16 Aug 1994 00:42:48 +0000 (+0000) Subject: Replace all uses of __const with __CONSTVALUE. X-Git-Tag: glibc-2.16-ports-merge^2~4076 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c6864f1bc939671b905869f43273207262ce878;p=platform%2Fupstream%2Fglibc.git Replace all uses of __const with __CONSTVALUE. --- diff --git a/sysdeps/m68k/fpu/__math.h b/sysdeps/m68k/fpu/__math.h index 3d0d4df..2617ae2 100644 --- a/sysdeps/m68k/fpu/__math.h +++ b/sysdeps/m68k/fpu/__math.h @@ -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 @@ -28,7 +28,7 @@ Cambridge, MA 02139, USA. */ #endif #define __inline_mathop2(func, op) \ - extern __inline __const double \ + extern __inline __CONSTVALUE double \ __m81_u(func)(double __mathop_x) \ { \ double __result; \ @@ -63,7 +63,7 @@ __inline_mathop2(log1p, lognp1) __inline_mathop(atanh) #endif -extern __inline __const double +extern __inline __CONSTVALUE double __m81_u(__drem)(double __x, double __y) { double __result; @@ -71,7 +71,7 @@ __m81_u(__drem)(double __x, double __y) return __result; } -extern __inline __const double +extern __inline __CONSTVALUE double __m81_u(ldexp)(double __x, int __e) { double __result; @@ -80,7 +80,7 @@ __m81_u(ldexp)(double __x, int __e) return __result; } -extern __inline __const double +extern __inline __CONSTVALUE double __m81_u(fmod)(double __x, double __y) { double __result; @@ -98,7 +98,7 @@ __m81_u(frexp)(double __value, int *__expptr) return __mantissa; } -extern __inline __const double +extern __inline __CONSTVALUE double __m81_u(pow)(double __x, double __y) { double __result; @@ -117,7 +117,7 @@ __m81_u(pow)(double __x, double __y) return __result; } -extern __inline __const double +extern __inline __CONSTVALUE double __m81_u(ceil)(double __x) { double __result;