summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sparc/bits/mathdef.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-14 07:41:08 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-14 07:41:08 +0000
commita5cc55111f77315fc7e04613772237b52a3dbfdf (patch)
treeea62d66b343dbc91de8ab529c8983021a18eda7d /libc/sysdeps/linux/sparc/bits/mathdef.h
parentc4990c6859a4caab9710a07a0c9052c57a1d11d4 (diff)
Sync up sparc headers
Diffstat (limited to 'libc/sysdeps/linux/sparc/bits/mathdef.h')
-rw-r--r--libc/sysdeps/linux/sparc/bits/mathdef.h36
1 files changed, 12 insertions, 24 deletions
diff --git a/libc/sysdeps/linux/sparc/bits/mathdef.h b/libc/sysdeps/linux/sparc/bits/mathdef.h
index c330c5c3d..c292a4189 100644
--- a/libc/sysdeps/linux/sparc/bits/mathdef.h
+++ b/libc/sysdeps/linux/sparc/bits/mathdef.h
@@ -1,20 +1,20 @@
-/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2000 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
- modify it under the terms of the GNU Library General Public License as
- published by the Free Software Foundation; either version 2 of the
- License, or (at your option) any later version.
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
+ Lesser General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with the GNU C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
#if !defined _MATH_H && !defined _COMPLEX_H
# error "Never use <bits/mathdef.h> directly; include <math.h> instead"
@@ -25,7 +25,7 @@
/* FIXME! This file describes properties of the compiler, not the machine;
it should not be part of libc! */
-#if defined __USE_ISOC9X && defined _MATH_H && !defined _MATH_H_MATHDEF
+#if defined __USE_ISOC99 && defined _MATH_H && !defined _MATH_H_MATHDEF
# define _MATH_H_MATHDEF 1
# ifdef __GNUC__
@@ -35,9 +35,6 @@
typedef float float_t;
typedef double double_t;
-/* Signal that types stay as they were declared. */
-# define FLT_EVAL_METHOD 0
-
/* Define `INFINITY' as value of type `float'. */
# define INFINITY HUGE_VALF
@@ -47,9 +44,6 @@ typedef double double_t;
typedef double float_t;
typedef double double_t;
-/* Signal that both types are `double'. */
-# define FLT_EVAL_METHOD 1
-
/* Define `INFINITY' as value of type `float'. */
# define INFINITY HUGE_VALF
@@ -60,20 +54,14 @@ typedef double double_t;
typedef double float_t;
typedef double double_t;
-/* Strange compiler, we don't know how it works. */
-# define FLT_EVAL_METHOD -1
-
/* Define `INFINITY' as value of type `float'. */
# define INFINITY HUGE_VALF
# endif
/* The values returned by `ilogb' for 0 and NaN respectively. */
-# define FP_ILOGB0 0x80000001
-# define FP_ILOGBNAN 0x7fffffff
-
-/* Number of decimal digits for the `double' type. */
-# define DECIMAL_DIG 15
+# define FP_ILOGB0 (-2147483647)
+# define FP_ILOGBNAN (2147483647)
#endif /* ISO C99 */