Mercurial > audlegacy-plugins
view src/flac112/fast_float_math_hack.h @ 585:2d20bc58a290 trunk
[svn] tweak xspf plugin to conform xspf specification version 1.
- arrange the order of elements to pass several validators.
- specify character set and encoding as UTF-8.
- now urls beginning with file:// can be used.
- prepend file:// onto local file entry to save (tentative).
author | yaz |
---|---|
date | Tue, 30 Jan 2007 23:14:02 -0800 |
parents | 4b31176c198a |
children |
line wrap: on
line source
# ifdef __ICL /* only Intel C compiler has fmath ??? */ #include <mathf.h> /* Nearest integer, absolute value, etc. */ #define ceil ceilf #define fabs fabsf #define floor floorf #define fmod fmodf #define rint rintf #define hypot hypotf /* Power functions */ #define pow powf #define sqrt sqrtf /* Exponential and logarithmic functions */ #define exp expf #define log logf #define log10 log10f /* Trigonometric functions */ #define acos acosf #define asin asinf #define atan atanf #define cos cosf #define sin sinf #define tan tanf /* Hyperbolic functions */ #define cosh coshf #define sinh sinhf #define tanh tanhf # endif