forked from len0rd/rockbox
Limit more variables to file scope
Change-Id: I30219d626316776eb73b4205d63376fa3dbc6361
This commit is contained in:
parent
85c98bc63c
commit
2a3e1628a5
21 changed files with 70 additions and 77 deletions
|
@ -9,9 +9,9 @@
|
|||
#include "mallocer.h"
|
||||
#include "codeclib.h"
|
||||
|
||||
unsigned char* mallocbuffer[MEMPOOL_MAX];
|
||||
long memory_ptr[MEMPOOL_MAX];
|
||||
size_t buffersize[MEMPOOL_MAX];
|
||||
static unsigned char* mallocbuffer[MEMPOOL_MAX];
|
||||
static long memory_ptr[MEMPOOL_MAX];
|
||||
static size_t buffersize[MEMPOOL_MAX];
|
||||
|
||||
int wpw_init_mempool(unsigned char mempool)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue