forked from len0rd/rockbox
Make a local function static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18639 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0fdee7a86c
commit
3a0e1cab69
1 changed files with 4 additions and 4 deletions
|
|
@ -36,8 +36,8 @@ extern char loadaddress[], dramend[];
|
||||||
extern void start(void);
|
extern void start(void);
|
||||||
|
|
||||||
void main(void) ICODE_ATTR;
|
void main(void) ICODE_ATTR;
|
||||||
int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
|
static int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
|
||||||
unsigned long *dst_len) ICODE_ATTR;
|
unsigned long *dst_len) ICODE_ATTR;
|
||||||
|
|
||||||
/* Vector table */
|
/* Vector table */
|
||||||
void (*vbr[]) (void) __attribute__ ((section (".vectors"))) =
|
void (*vbr[]) (void) __attribute__ ((section (".vectors"))) =
|
||||||
|
|
@ -55,8 +55,8 @@ void (*vbr[]) (void) __attribute__ ((section (".vectors"))) =
|
||||||
#define GETBIT(bb, src, ilen) \
|
#define GETBIT(bb, src, ilen) \
|
||||||
(((bb = bb & 0x7f ? bb*2 : ((unsigned)src[ilen++]*2+1)) >> 8) & 1)
|
(((bb = bb & 0x7f ? bb*2 : ((unsigned)src[ilen++]*2+1)) >> 8) & 1)
|
||||||
|
|
||||||
int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
|
static int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
|
||||||
unsigned long *dst_len)
|
unsigned long *dst_len)
|
||||||
{
|
{
|
||||||
unsigned long bb = 0;
|
unsigned long bb = 0;
|
||||||
unsigned ilen = 0, olen = 0, last_m_off = 1;
|
unsigned ilen = 0, olen = 0, last_m_off = 1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue