aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-25 14:16:35 -0700
committerChris Robinson <[email protected]>2012-10-25 14:16:35 -0700
commitc802bfccef732cac9e9cd31185e759eeb1f521f6 (patch)
treeae947bdb539f44ca97e9662466b8f5459c2e82a9 /OpenAL32/Include
parentfae4959db3228abceb110b842ceac30dce1e8de8 (diff)
Remove the float math wrapper functions
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alu.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 32ea0047..e71ee129 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -21,61 +21,6 @@
#endif
-#ifndef HAVE_POWF
-static __inline float powf(float x, float y)
-{ return (float)pow(x, y); }
-#endif
-
-#ifndef HAVE_SQRTF
-static __inline float sqrtf(float x)
-{ return (float)sqrt(x); }
-#endif
-
-#ifndef HAVE_COSF
-static __inline float cosf(float x)
-{ return (float)cos(x); }
-#endif
-
-#ifndef HAVE_SINF
-static __inline float sinf(float x)
-{ return (float)sin(x); }
-#endif
-
-#ifndef HAVE_ACOSF
-static __inline float acosf(float x)
-{ return (float)acos(x); }
-#endif
-
-#ifndef HAVE_ASINF
-static __inline float asinf(float x)
-{ return (float)asin(x); }
-#endif
-
-#ifndef HAVE_ATANF
-static __inline float atanf(float x)
-{ return (float)atan(x); }
-#endif
-
-#ifndef HAVE_ATAN2F
-static __inline float atan2f(float x, float y)
-{ return (float)atan2(x, y); }
-#endif
-
-#ifndef HAVE_FABSF
-static __inline float fabsf(float x)
-{ return (float)fabs(x); }
-#endif
-
-#ifndef HAVE_LOG10F
-static __inline float log10f(float x)
-{ return (float)log10(x); }
-#endif
-
-#ifndef HAVE_FLOORF
-static __inline float floorf(float x)
-{ return (float)floor(x); }
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif