2012-04-27 02:07:53 +00:00
|
|
|
/* Copyright (C) 1997-2012 Free Software Foundation, Inc.
|
1997-06-21 02:32:30 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
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.
|
1997-06-21 02:32:30 +00:00
|
|
|
|
|
|
|
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
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-06-21 02:32:30 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1997-06-21 02:32:30 +00:00
|
|
|
|
1998-11-10 19:10:36 +00:00
|
|
|
#if !defined _MATH_H && !defined _COMPLEX_H
|
1997-11-13 00:15:53 +00:00
|
|
|
# error "Never use <bits/mathdef.h> directly; include <math.h> instead"
|
1997-06-21 02:32:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* FIXME! This file describes properties of the compiler, not the machine;
|
|
|
|
it should not be part of libc! */
|
|
|
|
|
1999-12-18 19:36:39 +00:00
|
|
|
#if defined __USE_ISOC99 && defined _MATH_H && !defined _MATH_H_MATHDEF
|
|
|
|
# define _MATH_H_MATHDEF 1
|
|
|
|
|
1998-11-10 19:10:36 +00:00
|
|
|
# ifdef __GNUC__
|
1997-06-21 02:32:30 +00:00
|
|
|
|
|
|
|
/* In GNU or ANSI mode, gcc leaves `float' expressions as-is. */
|
|
|
|
typedef float float_t;
|
|
|
|
typedef double double_t;
|
|
|
|
|
1998-11-10 19:10:36 +00:00
|
|
|
# else
|
1997-06-21 02:32:30 +00:00
|
|
|
|
|
|
|
/* Wild guess at types for float_t and double_t. */
|
|
|
|
typedef double float_t;
|
|
|
|
typedef double double_t;
|
|
|
|
|
1998-11-10 19:10:36 +00:00
|
|
|
# endif
|
1997-11-13 00:15:53 +00:00
|
|
|
|
1998-01-21 17:00:32 +00:00
|
|
|
/* The values returned by `ilogb' for 0 and NaN respectively. */
|
2000-09-01 06:32:15 +00:00
|
|
|
# define FP_ILOGB0 (-2147483647)
|
|
|
|
# define FP_ILOGBNAN (2147483647)
|
1998-01-21 17:00:32 +00:00
|
|
|
|
2004-01-13 09:15:58 +00:00
|
|
|
#endif /* ISO C99 && MATH_H */
|
1998-11-10 19:10:36 +00:00
|
|
|
|
2004-01-13 09:15:58 +00:00
|
|
|
#if defined _COMPLEX_H && !defined _COMPLEX_H_MATHDEF
|
|
|
|
# define _COMPLEX_H_MATHDEF 1
|
|
|
|
# if defined(__GNUC__) && !__GNUC_PREREQ(3,4)
|
|
|
|
|
|
|
|
/* Due to an ABI change, we need to remap the complex float symbols. */
|
|
|
|
# define _Mdouble_ float
|
|
|
|
# define __MATHCALL(function, args) \
|
|
|
|
__MATHDECL (_Complex float, function, args)
|
|
|
|
# define __MATHDECL(type, function, args) \
|
|
|
|
__MATHDECL_1(type, function##f, args, __c1_##function##f); \
|
|
|
|
__MATHDECL_1(type, __##function##f, args, __c1_##function##f)
|
|
|
|
# define __MATHDECL_1(type, function, args, alias) \
|
|
|
|
extern type function args __asm__(#alias) __THROW
|
|
|
|
|
|
|
|
# include <bits/cmathcalls.h>
|
|
|
|
|
|
|
|
# undef _Mdouble_
|
|
|
|
# undef __MATHCALL
|
|
|
|
# undef __MATHDECL
|
|
|
|
# undef __MATHDECL_1
|
|
|
|
|
|
|
|
# endif /* GNUC before 3.4 */
|
|
|
|
#endif /* COMPLEX_H */
|