Fix to 5301. Revert from using fd_copysign from the libmath emulation library to using the system copysign.

This commit is contained in:
mccabe%netscape.com 1999-05-04 07:12:18 +00:00
Родитель a96f72d866
Коммит 43c8026874
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -197,13 +197,13 @@ extern double fd_copysign __P((double, double));
#define fd_sin sin
#define fd_sqrt sqrt
#define fd_tan tan
#define fd_copysign copysign
extern double fd_asin __P((double));
extern double fd_acos __P((double));
extern double fd_exp __P((double));
extern double fd_log __P((double));
extern double fd_pow __P((double, double));
extern double fd_copysign __P((double, double));
#elif defined(OSF1)