From c26ab37aca59da2fde7d96ab8528ac2b002a8192 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sun, 4 Mar 2012 20:13:43 +0100 Subject: mikmod plugin: make functions static when possible Change-Id: Ic0102071318c55c19952029be6998ecf5f33eb98 --- apps/plugins/mikmod/load_stm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/plugins/mikmod/load_stm.c') 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]; -- cgit v1.2.3