summaryrefslogtreecommitdiffstats
path: root/apps/plugins/mikmod/load_stm.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2012-03-04 20:13:43 +0100
committerBertrik Sikken <bertrik@sikken.nl>2012-04-14 17:31:14 +0200
commitc26ab37aca59da2fde7d96ab8528ac2b002a8192 (patch)
tree49c977c9f8662a20b99769c9c0cb7b5fd5fb3645 /apps/plugins/mikmod/load_stm.c
parentcf1e54b21edc9f68e65694249f0b8c61b3e515c1 (diff)
downloadrockbox-c26ab37aca59da2fde7d96ab8528ac2b002a8192.tar.gz
rockbox-c26ab37aca59da2fde7d96ab8528ac2b002a8192.zip
mikmod plugin: make functions static when possible
Change-Id: Ic0102071318c55c19952029be6998ecf5f33eb98
Diffstat (limited to 'apps/plugins/mikmod/load_stm.c')
-rw-r--r--apps/plugins/mikmod/load_stm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/mikmod/load_stm.c b/apps/plugins/mikmod/load_stm.c
index c1d771df11..b2537ab68f 100644
--- a/apps/plugins/mikmod/load_stm.c
+++ b/apps/plugins/mikmod/load_stm.c
@@ -98,7 +98,7 @@ static CHAR* STM_Version[STM_NTRACKERS] = {
/*========== Loader code */
-int STM_Test(void)
+static int STM_Test(void)
{
UBYTE str[44];
int t;
@@ -118,7 +118,7 @@ int STM_Test(void)
return 0;
}
-int STM_Init(void)
+static int STM_Init(void)
{
if(!(mh=(STMHEADER*)MikMod_malloc(sizeof(STMHEADER)))) return 0;
if(!(stmbuf=(STMNOTE*)MikMod_calloc(64U*4,sizeof(STMNOTE)))) return 0;
@@ -250,7 +250,7 @@ static int STM_LoadPatterns(void)
return 1;
}
-int STM_Load(int curious)
+static int STM_Load(int curious)
{
int t;
ULONG MikMod_ISA; /* We must generate our own ISA, it's not stored in stm */
@@ -349,7 +349,7 @@ int STM_Load(int curious)
return 1;
}
-CHAR *STM_LoadTitle(void)
+static CHAR *STM_LoadTitle(void)
{
CHAR s[20];