Deleted Added
full compact
math.h (136385) math.h (140088)
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 136385 2004-10-11 18:13:52Z stefanf $
14 * $FreeBSD: head/lib/msun/src/math.h 140088 2005-01-11 23:12:55Z 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>

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

260double erf(double);
261double erfc(double) __pure2;
262double expm1(double) __pure2;
263double hypot(double, double);
264int ilogb(double);
265int (isinf)(double) __pure2;
266int (isnan)(double) __pure2;
267double lgamma(double);
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>

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

260double erf(double);
261double erfc(double) __pure2;
262double expm1(double) __pure2;
263double hypot(double, double);
264int ilogb(double);
265int (isinf)(double) __pure2;
266int (isnan)(double) __pure2;
267double lgamma(double);
268long long llrint(double);
269long long llround(double);
268double log1p(double) __pure2;
269double logb(double) __pure2;
270double log1p(double) __pure2;
271double logb(double) __pure2;
272long lrint(double);
273long lround(double);
270double nextafter(double, double);
271double remainder(double, double);
272double rint(double) __pure2;
273#endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
274
275#if __BSD_VISIBLE || __XSI_VISIBLE
276double j0(double);
277double j1(double);

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

363float lgammaf(float);
364
365float acoshf(float);
366float asinhf(float);
367float atanhf(float);
368float cbrtf(float) __pure2;
369float logbf(float) __pure2;
370float copysignf(float, float) __pure2;
274double nextafter(double, double);
275double remainder(double, double);
276double rint(double) __pure2;
277#endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
278
279#if __BSD_VISIBLE || __XSI_VISIBLE
280double j0(double);
281double j1(double);

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

367float lgammaf(float);
368
369float acoshf(float);
370float asinhf(float);
371float atanhf(float);
372float cbrtf(float) __pure2;
373float logbf(float) __pure2;
374float copysignf(float, float) __pure2;
375long long llrintf(float);
376long long llroundf(float);
377long lrintf(float);
378long lroundf(float);
371float nearbyintf(float) __pure2;
372float nextafterf(float, float);
373float remainderf(float, float);
374float rintf(float);
375float scalblnf(float, long);
376float scalbnf(float, int);
377float truncf(float);
378

--- 112 unchanged lines hidden ---
379float nearbyintf(float) __pure2;
380float nextafterf(float, float);
381float remainderf(float, float);
382float rintf(float);
383float scalblnf(float, long);
384float scalbnf(float, int);
385float truncf(float);
386

--- 112 unchanged lines hidden ---