1
0
Fork 0
forked from len0rd/rockbox

Killed unnecessary global variables by making them static.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17184 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-04-20 10:24:15 +00:00
parent 8924686224
commit db2d61f4ea
9 changed files with 11 additions and 15 deletions

View file

@ -48,7 +48,7 @@
#define DIRCACHE_STOP 2
#define MAX_OPEN_DIRS 8
DIR_CACHED opendirs[MAX_OPEN_DIRS];
static DIR_CACHED opendirs[MAX_OPEN_DIRS];
static struct dircache_entry *fd_bindings[MAX_OPEN_FILES];
static struct dircache_entry *dircache_root;