Deleted Added
full compact
math.h (209110) math.h (216211)
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 209110 2010-06-12 17:32:05Z das $
14 * $FreeBSD: head/lib/msun/src/math.h 216211 2010-12-05 22:11:22Z 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>

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

231double hypot(double, double);
232int ilogb(double) __pure2;
233int (isinf)(double) __pure2;
234int (isnan)(double) __pure2;
235double lgamma(double);
236long long llrint(double);
237long long llround(double);
238double log1p(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>

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

231double hypot(double, double);
232int ilogb(double) __pure2;
233int (isinf)(double) __pure2;
234int (isnan)(double) __pure2;
235double lgamma(double);
236long long llrint(double);
237long long llround(double);
238double log1p(double);
239double log2(double);
239double logb(double);
240long lrint(double);
241long lround(double);
242double nan(const char *) __pure2;
243double nextafter(double, double);
244double remainder(double, double);
245double remquo(double, double, int *);
246double rint(double);

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

314float exp2f(float);
315float expf(float);
316float expm1f(float);
317float frexpf(float, int *); /* fundamentally !__pure2 */
318int ilogbf(float) __pure2;
319float ldexpf(float, int);
320float log10f(float);
321float log1pf(float);
240double logb(double);
241long lrint(double);
242long lround(double);
243double nan(const char *) __pure2;
244double nextafter(double, double);
245double remainder(double, double);
246double remquo(double, double, int *);
247double rint(double);

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

315float exp2f(float);
316float expf(float);
317float expm1f(float);
318float frexpf(float, int *); /* fundamentally !__pure2 */
319int ilogbf(float) __pure2;
320float ldexpf(float, int);
321float log10f(float);
322float log1pf(float);
323float log2f(float);
322float logf(float);
323float modff(float, float *); /* fundamentally !__pure2 */
324
325float powf(float, float);
326float sqrtf(float);
327
328float ceilf(float);
329float fabsf(float) __pure2;

--- 161 unchanged lines hidden ---
324float logf(float);
325float modff(float, float *); /* fundamentally !__pure2 */
326
327float powf(float, float);
328float sqrtf(float);
329
330float ceilf(float);
331float fabsf(float) __pure2;

--- 161 unchanged lines hidden ---