Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added missing math.h functionality for SDL_audiocvt.c
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 12, 2008
1 parent 7f814ee commit c33e5cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/libm/math.h
Expand Up @@ -28,6 +28,8 @@

/* Math routines from uClibc: http://www.uclibc.org */

#define M_PI 3.14159265358979323846264338327950288 /* pi */

extern double __ieee754_log(double x);
extern double __ieee754_pow(double x, double y);
extern double __ieee754_sqrt(double x);
Expand All @@ -43,6 +45,9 @@ extern double floor(double x);
extern double scalbn(double x, int n);
extern double sin(double x);

#define sinf(x) (float)sin((double)x)
#define cosf(x) (float)cos((double)x)

#endif /* HAVE_MATH_H */

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit c33e5cb

Please sign in to comment.