View | Details | Raw Unified | Return to bug 218514 | Differences between
and this patch

Collapse All | Expand All

(-)b/lib/msun/src/s_cospi.c (+1 lines)
Lines 60-65 Link Here
60
 *    cospi(nan) = nan.  Raises the "invalid" floating-point exception.
60
 *    cospi(nan) = nan.  Raises the "invalid" floating-point exception.
61
 */
61
 */
62
62
63
#include <float.h>
63
#include "math.h"
64
#include "math.h"
64
#include "math_private.h"
65
#include "math_private.h"
65
66
(-)b/lib/msun/src/s_sinpi.c (+1 lines)
Lines 63-68 Link Here
63
 *    sinpi(nan) = nan.  Raises the "invalid" floating-point exception.
63
 *    sinpi(nan) = nan.  Raises the "invalid" floating-point exception.
64
 */
64
 */
65
65
66
#include <float.h>
66
#include "math.h"
67
#include "math.h"
67
#include "math_private.h"
68
#include "math_private.h"
68
69
(-)b/lib/msun/src/s_tanpi.c (+1 lines)
Lines 63-68 Link Here
63
 *    tanpi(nan) = NaN.  Raises the "invalid" floating-point exception.
63
 *    tanpi(nan) = NaN.  Raises the "invalid" floating-point exception.
64
 */
64
 */
65
65
66
#include <float.h>
66
#include "math.h"
67
#include "math.h"
67
#include "math_private.h"
68
#include "math_private.h"
68
69

Return to bug 218514