-/* 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
#endif
-double
+__CONSTVALUE double
DEFUN(FUNC, (x), double x)
{
return __m81_u(FUNC)(x);
-/* 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
#ifdef __GNUC__
-double
+__CONSTVALUE double
DEFUN(atan2, (y, x), double y AND double x)
{
static CONST double one = 1.0, zero = 0.0;
-/* 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
#undef drem
-double
+__CONSTVALUE double
DEFUN(__drem, (x, y), double x AND double y)
{
return ____drem(x, y);
-/* 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
#define __NO_MATH_INLINES
#include <math.h>
-double
+__CONSTVALUE double
DEFUN(fmod, (x, y), double x AND double y)
{
return __fmod(x, y);
-/* 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
#endif
-int
+__CONSTVALUE int
DEFUN(FUNC, (x), double x)
{
return __m81_u(FUNC)(x);
-/* 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
#define __NO_MATH_INLINES
#include <math.h>
-double
+__CONSTVALUE double
DEFUN(ldexp, (x, exp), double x AND int exp)
{
return __ldexp(x, exp);
-/* 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
#ifdef __GNUC__
/* Return the base 2 signed integral exponent of X. */
-double
+
+__CONSTVALUE double
DEFUN(__logb, (x), double x)
{
if (__isnan (x))
-/* 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
#define __NO_MATH_INLINES
#include <math.h>
-double
+__CONSTVALUE double
DEFUN(pow, (x, y), double x AND double y)
{
return __pow(x, y);