]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/libsa/math.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
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.
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
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
29 * Revision 1.1.1.1 1998/09/22 21:05:51 wsanchez
30 * Import of Mac OS X kernel (~semeria)
32 * Revision 1.1.1.1 1998/03/07 02:25:35 wsanchez
33 * Import of OSF Mach kernel (~mburg)
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]
39 * Revision 1.1.2.4 1997/01/03 10:11:22 yp
40 * isnan() prototype for JDK.
43 * Revision 1.1.2.3 1996/11/29 14:33:24 yp
44 * Added more prototypes.
47 * Revision 1.1.2.2 1996/10/10 13:56:16 yp
48 * Submitted again (ODE problems).
51 * Revision 1.1.2.1 1996/10/10 09:16:46 yp
62 double acosh (double);
64 double asinh (double);
66 double atanh (double);
67 double atan2 (double, double);
70 double copysign (double, double);
75 double expm1 (double);
78 double floor (double);
79 double fmod (double, double);
80 double frexp (double, int *);
83 double ldexp (double, int);
85 double log10 (double);
86 double log1p (double);
88 double modf (double, double *);
89 double nextafter (double, double);
90 double pow (double, double);
91 double remainder (double, double);
93 double scalb (double, double);
100 #include <machine/math.h>
102 #endif /* _MATH_H_ */