Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2010-06-21 09:01:17 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2010-06-21 09:01:17 +0400
commitc239bd64dcca10bfe1ee9a373a13a76d486c6be0 (patch)
treea22574cf8ed9b1dbf5b5c16238bf8e58ce7c9bbe /libcelt
parent79e67434981d44fdbdd73a5d8e15fe0164257c90 (diff)
removing some warnings
Diffstat (limited to 'libcelt')
-rw-r--r--libcelt/mathops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcelt/mathops.h b/libcelt/mathops.h
index 75198da..31778a1 100644
--- a/libcelt/mathops.h
+++ b/libcelt/mathops.h
@@ -380,7 +380,7 @@ static inline celt_word32 celt_rcp(celt_word32 x)
#define celt_div(a,b) MULT32_32_Q31((celt_word32)(a),celt_rcp(b))
-static celt_word32 frac_div32(celt_word32 a, celt_word32 b)
+static inline celt_word32 frac_div32(celt_word32 a, celt_word32 b)
{
celt_word16 rcp;
celt_word32 result, rem;