summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/load_ult.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_ult.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_ult.c')
-rw-r--r--apps/plugins/mikmod/load_ult.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/mikmod/load_ult.c b/apps/plugins/mikmod/load_ult.c
index 2d8d3a9788..f56c2df06b 100644
--- a/apps/plugins/mikmod/load_ult.c
+++ b/apps/plugins/mikmod/load_ult.c
@@ -86,7 +86,7 @@ static ULTEVENT ev;
86 86
87/*========== Loader code */ 87/*========== Loader code */
88 88
89int ULT_Test(void) 89static int ULT_Test(void)
90{ 90{
91 CHAR id[16]; 91 CHAR id[16];
92 92
@@ -96,12 +96,12 @@ int ULT_Test(void)
96 return 1; 96 return 1;
97} 97}
98 98
99int ULT_Init(void) 99static int ULT_Init(void)
100{ 100{
101 return 1; 101 return 1;
102} 102}
103 103
104void ULT_Cleanup(void) 104static void ULT_Cleanup(void)
105{ 105{
106} 106}
107 107
@@ -124,7 +124,7 @@ static UBYTE ReadUltEvent(ULTEVENT* event)
124 return rep; 124 return rep;
125} 125}
126 126
127int ULT_Load(int curious) 127static int ULT_Load(int curious)
128{ 128{
129 int t,u,tracks=0; 129 int t,u,tracks=0;
130 SAMPLE *q; 130 SAMPLE *q;
@@ -313,7 +313,7 @@ int ULT_Load(int curious)
313 return 1; 313 return 1;
314} 314}
315 315
316CHAR *ULT_LoadTitle(void) 316static CHAR *ULT_LoadTitle(void)
317{ 317{
318 CHAR s[32]; 318 CHAR s[32];
319 319