* math/math_private.h: Don't add long double prototypes if
	NO_LONG_DOUBLE is defined.
This commit is contained in:
Ulrich Drepper 2000-09-27 07:01:14 +00:00
parent d01fe03296
commit f3acd97a91
2 changed files with 14 additions and 9 deletions

View File

@ -1,5 +1,8 @@
2000-09-26 Ulrich Drepper <drepper@redhat.com>
* math/math_private.h: Don't add long double prototypes if
NO_LONG_DOUBLE is defined.
* sysdeps/unix/i386/i586/clock_nanosleep.c (CLOCK_P): Remove
CLOCK_MONOTONIC.
* sysdeps/unix/i386/i586/clock_gettime.c (EXTRA_CLOCK_CASES): Likewise.

View File

@ -267,6 +267,7 @@ extern void __kernel_sincosl (long double,long double,
extern int __kernel_rem_pio2l (long double*,long double*,int,int,
int,const int*);
#ifndef NO_LONG_DOUBLE
/* prototypes required to compile the ldbl-96 support without warnings */
extern int __finitel (long double);
extern int __ilogbl (long double);
@ -285,5 +286,6 @@ extern long double __scalbnl (long double, int);
extern long double __sqrtl (long double x);
extern long double fabsl (long double x);
extern void __sincosl (long double, long double *, long double *);
#endif
#endif /* _MATH_PRIVATE_H_ */