aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-09-09 21:27:54 -0700
committerChris Robinson <[email protected]>2012-09-09 21:27:54 -0700
commit81208acd6e67057644fb6e18e8e98f101d4b5fb5 (patch)
treef208d7b7f72685f5a142464e0c496e01612fe655
parentaf3b5c23c846d261b1b81528007d659d2754af7b (diff)
Add missing returns
-rw-r--r--OpenAL32/Include/alu.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 7bb579de..951ef0d7 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -51,52 +51,52 @@ static __inline float powf(float x, float y)
#ifndef HAVE_SQRTF
static __inline float sqrtf(float x)
-{ (float)sqrt(x); }
+{ return (float)sqrt(x); }
#endif
#ifndef HAVE_COSF
static __inline float cosf(float x)
-{ (float)cos(x); }
+{ return (float)cos(x); }
#endif
#ifndef HAVE_SINF
static __inline float sinf(float x)
-{ (float)sin(x); }
+{ return (float)sin(x); }
#endif
#ifndef HAVE_ACOSF
static __inline float acosf(float x)
-{ (float)acos(x); }
+{ return (float)acos(x); }
#endif
#ifndef HAVE_ASINF
static __inline float asinf(float x)
-{ (float)asin(x); }
+{ return (float)asin(x); }
#endif
#ifndef HAVE_ATANF
static __inline float atanf(float x)
-{ (float)atan(x); }
+{ return (float)atan(x); }
#endif
#ifndef HAVE_ATAN2F
static __inline float atan2f(float x, float y)
-{ (float)atan2(x, y); }
+{ return (float)atan2(x, y); }
#endif
#ifndef HAVE_FABSF
static __inline float fabsf(float x)
-{ (float)fabs(x); }
+{ return (float)fabs(x); }
#endif
#ifndef HAVE_LOG10F
static __inline float log10f(float x)
-{ (float)log10(x); }
+{ return (float)log10(x); }
#endif
#ifndef HAVE_FLOORF
static __inline float floorf(float x)
-{ (float)floor(x); }
+{ return (float)floor(x); }
#endif
#ifdef __cplusplus