diff jssplr.c @ 136:8ac24d753304

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 05 Oct 2012 04:11:24 +0300
parents ff0fe1d1ab3d
children 69e3041032e9
line wrap: on
line diff
--- a/jssplr.c	Fri Oct 05 02:49:13 2012 +0300
+++ b/jssplr.c	Fri Oct 05 04:11:24 2012 +0300
@@ -36,7 +36,7 @@
 
 /* Helper functions
  */
-int jmpNoteToAmigaPeriod(int note, int finetune)
+static int jmpNoteToAmigaPeriod(int note, int finetune)
 {
     int tmp = (note + finetune + 8);
     if (tmp < 0) tmp = 0; else
@@ -484,7 +484,7 @@
 
 /* Set new tempo-value of the player.
  */
-void jmpSetTempo(JSSPlayer * mp, int tempo)
+static void jmpSetTempo(JSSPlayer * mp, int tempo)
 {
     assert(mp != NULL);
     JSS_LOCK(mp);
@@ -496,7 +496,7 @@
 }
 
 
-void jmpClearChannels(JSSPlayer * mp)
+static void jmpClearChannels(JSSPlayer * mp)
 {
     int i;
     assert(mp != NULL);