Deleted Added
full compact
mathimpl.h (1573) mathimpl.h (92917)
1/*
2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)mathimpl.h 8.1 (Berkeley) 6/4/93
1/*
2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)mathimpl.h 8.1 (Berkeley) 6/4/93
34 * $FreeBSD: head/lib/msun/bsdsrc/mathimpl.h 92917 2002-03-21 23:54:04Z obrien $
34 */
35
36#include <sys/cdefs.h>
37#include <math.h>
38
39#if defined(vax)||defined(tahoe)
40
41/* Deal with different ways to concatenate in cpp */

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

89
90/*
91 * Functions internal to the math package, yet not static.
92 */
93extern double __exp__E();
94extern double __log__L();
95
96struct Double {double a, b;};
35 */
36
37#include <sys/cdefs.h>
38#include <math.h>
39
40#if defined(vax)||defined(tahoe)
41
42/* Deal with different ways to concatenate in cpp */

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

90
91/*
92 * Functions internal to the math package, yet not static.
93 */
94extern double __exp__E();
95extern double __log__L();
96
97struct Double {double a, b;};
97double __exp__D __P((double, double));
98struct Double __log__D __P((double));
98double __exp__D(double, double);
99struct Double __log__D(double);