]> git.saurik.com Git - apple/xnu.git/blame - osfmk/libsa/math.h
xnu-792.25.20.tar.gz
[apple/xnu.git] / osfmk / libsa / math.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
6601e61a
A
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
6601e61a
A
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
8f6c56a5 19 *
6601e61a 20 * @APPLE_LICENSE_HEADER_END@
1c79356b
A
21 */
22/*
23 * @OSF_COPYRIGHT@
24 *
25 */
26/*
27 * HISTORY
28 *
29 * Revision 1.1.1.1 1998/09/22 21:05:51 wsanchez
30 * Import of Mac OS X kernel (~semeria)
31 *
32 * Revision 1.1.1.1 1998/03/07 02:25:35 wsanchez
33 * Import of OSF Mach kernel (~mburg)
34 *
35 * Revision 1.1.6.1 1997/01/31 15:46:32 emcmanus
36 * Merged with nmk22b1_shared.
37 * [1997/01/30 16:57:28 emcmanus]
38 *
39 * Revision 1.1.2.4 1997/01/03 10:11:22 yp
40 * isnan() prototype for JDK.
41 * [97/01/03 yp]
42 *
43 * Revision 1.1.2.3 1996/11/29 14:33:24 yp
44 * Added more prototypes.
45 * [96/11/29 yp]
46 *
47 * Revision 1.1.2.2 1996/10/10 13:56:16 yp
48 * Submitted again (ODE problems).
49 * [96/10/10 yp]
50 *
51 * Revision 1.1.2.1 1996/10/10 09:16:46 yp
52 * Created.
53 * [96/10/10 yp]
54 *
55 * $EndLog$
56 */
57
58#ifndef _MATH_H_
59#define _MATH_H_ 1
60
61double acos (double);
62double acosh (double);
63double asin (double);
64double asinh (double);
65double atan (double);
66double atanh (double);
67double atan2 (double, double);
68double cbrt (double);
69double ceil (double);
70double copysign (double, double);
71double cos (double);
72double cosh (double);
73double drem (double);
74double exp (double);
75double expm1 (double);
76double fabs (double);
77int finite (double);
78double floor (double);
79double fmod (double, double);
80double frexp (double, int *);
81int ilogb (double);
82int isnan(double);
83double ldexp (double, int);
84double log (double);
85double log10 (double);
86double log1p (double);
87double logb (double);
88double modf (double, double *);
89double nextafter (double, double);
90double pow (double, double);
91double remainder (double, double);
92double rint (double);
93double scalb (double, double);
94double sin (double);
95double sinh (double);
96double sqrt (double);
97double tan (double);
98double tanh (double);
99
100#include <machine/math.h>
101
102#endif /* _MATH_H_ */