diff asxparser.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 c1a3f1bbba26
children 9fc9d1e788aa
line wrap: on
line diff
--- a/asxparser.c	Thu Feb 18 00:18:50 2010 +0000
+++ b/asxparser.c	Thu Feb 18 09:26:00 2010 +0000
@@ -36,7 +36,7 @@
 
 ////// List utils
 
-void
+static void
 asx_list_add(void* list_ptr,void* entry){
   void** list = *(void***)list_ptr;
   int c = 0;
@@ -53,7 +53,7 @@
 }
 
 
-void
+static void
 asx_list_remove(void* list_ptr,void* entry,ASX_FreeFunc free_func) {
   void** list = *(void***)list_ptr;
   int c,e = -1;