1
0
Fork 0
forked from len0rd/rockbox

mikmod plugin: make functions static when possible

Change-Id: Ic0102071318c55c19952029be6998ecf5f33eb98
This commit is contained in:
Bertrik Sikken 2012-03-04 20:13:43 +01:00
parent cf1e54b21e
commit c26ab37aca
23 changed files with 107 additions and 107 deletions

View file

@ -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];