1
0
Fork 0
forked from len0rd/rockbox

plugins: make local functions static for a subset of plugins

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30564 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-09-17 17:20:27 +00:00
parent e03faf835d
commit d91e67acc9
14 changed files with 124 additions and 122 deletions

View file

@ -48,7 +48,7 @@ struct stWord
#ifdef ROCKBOX_BIG_ENDIAN
#define reverse(x) x
#else
long reverse (long N) {
static long reverse (long N) {
unsigned char B[4];
B[0] = (N & 0x000000FF) >> 0;
B[1] = (N & 0x0000FF00) >> 8;