equal
deleted
inserted
replaced
16 appreciated but is not required. |
16 appreciated but is not required. |
17 2. Altered source versions must be plainly marked as such, and must not be |
17 2. Altered source versions must be plainly marked as such, and must not be |
18 misrepresented as being the original software. |
18 misrepresented as being the original software. |
19 3. This notice may not be removed or altered from any source distribution. |
19 3. This notice may not be removed or altered from any source distribution. |
20 */ |
20 */ |
|
21 |
|
22 #ifndef math_libm_h_ |
|
23 #define math_libm_h_ |
|
24 |
21 #include "../SDL_internal.h" |
25 #include "../SDL_internal.h" |
22 |
26 |
23 /* Math routines from uClibc: http://www.uclibc.org */ |
27 /* Math routines from uClibc: http://www.uclibc.org */ |
24 |
28 |
25 double SDL_uclibc_atan(double x); |
29 double SDL_uclibc_atan(double x); |
36 double SDL_uclibc_scalbn(double x, int n); |
40 double SDL_uclibc_scalbn(double x, int n); |
37 double SDL_uclibc_sin(double x); |
41 double SDL_uclibc_sin(double x); |
38 double SDL_uclibc_sqrt(double x); |
42 double SDL_uclibc_sqrt(double x); |
39 double SDL_uclibc_tan(double x); |
43 double SDL_uclibc_tan(double x); |
40 |
44 |
|
45 #endif /* math_libm_h_ */ |
|
46 |
41 /* vi: set ts=4 sw=4 expandtab: */ |
47 /* vi: set ts=4 sw=4 expandtab: */ |