diff input/input.c @ 30590:d218228dc74d

Mark some more functions that are not used outside of their files as static.
author diego
date Thu, 18 Feb 2010 09:26:00 +0000
parents e255f9571156
children 8a9667eccbf7
line wrap: on
line diff
--- a/input/input.c	Thu Feb 18 00:18:50 2010 +0000
+++ b/input/input.c	Thu Feb 18 09:26:00 2010 +0000
@@ -1494,7 +1494,7 @@
 #define BS_MAX 256
 #define SPACE_CHAR " \n\r\t"
 
-void
+static void
 mp_input_bind_keys(const int keys[MP_MAX_KEY_DOWN+1], char* cmd) {
   int i = 0,j;
   mp_cmd_bind_t* bind = NULL;
@@ -1538,7 +1538,7 @@
   memcpy(bind->input,keys,(MP_MAX_KEY_DOWN+1)*sizeof(int));
 }
 
-void
+static void
 mp_input_add_binds(const mp_cmd_bind_t* list) {
   int i;
   for(i = 0 ; list[i].cmd ; i++)