1
0
Fork 0
forked from len0rd/rockbox

Various files: make functions static if they're local or make sure there is a proper #include if not

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22184 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2009-08-06 09:28:25 +00:00
parent 0307cd16a0
commit d767883a41
11 changed files with 19 additions and 17 deletions

View file

@ -29,7 +29,7 @@
#define SWAP(a, b) do{uint8_t SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
void advance_buffer(uint8_t **buf, int val)
static void advance_buffer(uint8_t **buf, int val)
{
*buf += val;
}