Mark some functions 'static' in glib/tests
[platform/upstream/glib.git] / glib / tests / collate.c
index eaae049..7750c40 100644 (file)
@@ -14,7 +14,7 @@ typedef struct {
   const gchar *str;
 } Line;
 
-int
+static int
 compare_collate (const void *a, const void *b)
 {
   const Line *line_a = a;
@@ -23,7 +23,7 @@ compare_collate (const void *a, const void *b)
   return g_utf8_collate (line_a->str, line_b->str);
 }
 
-int
+static int
 compare_key (const void *a, const void *b)
 {
   const Line *line_a = a;