summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/fixedpoint.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2008-05-04 13:21:07 +0000
committerBertrik Sikken <bertrik@sikken.nl>2008-05-04 13:21:07 +0000
commita36c8f1db3b1fbb2ce2dbb834032c4e84f30add7 (patch)
tree65d3214e15daa1efb5782e075b9841848539b334 /apps/plugins/lib/fixedpoint.c
parent517aca8532af3121d9c75ff293c5269f20c0b540 (diff)
downloadrockbox-a36c8f1db3b1fbb2ce2dbb834032c4e84f30add7.tar.gz
rockbox-a36c8f1db3b1fbb2ce2dbb834032c4e84f30add7.zip
pluginlib: made local functions in static and made sure that source files include their own header file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17353 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/fixedpoint.c')
-rw-r--r--apps/plugins/lib/fixedpoint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/lib/fixedpoint.c b/apps/plugins/lib/fixedpoint.c
index 88c2f6ea54..92979dad53 100644
--- a/apps/plugins/lib/fixedpoint.c
+++ b/apps/plugins/lib/fixedpoint.c
@@ -20,6 +20,7 @@
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include <inttypes.h> 22#include <inttypes.h>
23#include "fixedpoint.h"
23 24
24/* Inverse gain of circular cordic rotation in s0.31 format. */ 25/* Inverse gain of circular cordic rotation in s0.31 format. */
25static const long cordic_circular_gain = 0xb2458939; /* 0.607252929 */ 26static const long cordic_circular_gain = 0xb2458939; /* 0.607252929 */