Deleted Added
full compact
math.h (131320) math.h (131676)
1/*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4 *
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
10 */
11
12/*
13 * from: @(#)fdlibm.h 5.1 93/09/24
1/*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4 *
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
10 */
11
12/*
13 * from: @(#)fdlibm.h 5.1 93/09/24
14 * $FreeBSD: head/lib/msun/src/math.h 131320 2004-06-30 07:04:01Z das $
14 * $FreeBSD: head/lib/msun/src/math.h 131676 2004-07-06 04:46:08Z das $
15 */
16
17#ifndef _MATH_H_
18#define _MATH_H_
19
20#include <sys/cdefs.h>
21#include <sys/_types.h>
22#include <machine/_limits.h>

--- 187 unchanged lines hidden (view full) ---

210double fdim(double, double);
211double fmax(double, double) __pure2;
212double fmin(double, double) __pure2;
213double hypot(double, double);
214int ilogb(double);
215double lgamma(double);
216double log1p(double) __pure2;
217double logb(double) __pure2;
15 */
16
17#ifndef _MATH_H_
18#define _MATH_H_
19
20#include <sys/cdefs.h>
21#include <sys/_types.h>
22#include <machine/_limits.h>

--- 187 unchanged lines hidden (view full) ---

210double fdim(double, double);
211double fmax(double, double) __pure2;
212double fmin(double, double) __pure2;
213double hypot(double, double);
214int ilogb(double);
215double lgamma(double);
216double log1p(double) __pure2;
217double logb(double) __pure2;
218double nearbyint(double) __pure2;
218double nextafter(double, double);
219double remainder(double, double);
220double rint(double) __pure2;
221double round(double);
222double trunc(double);
223#endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
224
225#if __BSD_VISIBLE || __XSI_VISIBLE

--- 80 unchanged lines hidden (view full) ---

306float lgammaf(float);
307
308float acoshf(float);
309float asinhf(float);
310float atanhf(float);
311float cbrtf(float) __pure2;
312float logbf(float) __pure2;
313float copysignf(float, float) __pure2;
219double nextafter(double, double);
220double remainder(double, double);
221double rint(double) __pure2;
222double round(double);
223double trunc(double);
224#endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
225
226#if __BSD_VISIBLE || __XSI_VISIBLE

--- 80 unchanged lines hidden (view full) ---

307float lgammaf(float);
308
309float acoshf(float);
310float asinhf(float);
311float atanhf(float);
312float cbrtf(float) __pure2;
313float logbf(float) __pure2;
314float copysignf(float, float) __pure2;
315float nearbyintf(float) __pure2;
314float nextafterf(float, float);
315float remainderf(float, float);
316float rintf(float);
317float scalblnf(float, long);
318float scalbnf(float, int);
319float truncf(float);
320
321float fdimf(float, float);

--- 109 unchanged lines hidden ---
316float nextafterf(float, float);
317float remainderf(float, float);
318float rintf(float);
319float scalblnf(float, long);
320float scalbnf(float, int);
321float truncf(float);
322
323float fdimf(float, float);

--- 109 unchanged lines hidden ---