Make all non-static functions start with underscore

We don't want to export a lot of non-namespaced internal symbols.
This commit is contained in:
Alexander Larsson
2009-05-18 11:27:49 +02:00
parent 66d49b8bde
commit c3f4e01627
16 changed files with 217 additions and 210 deletions

View File

@@ -51,7 +51,7 @@ dump_node_tree (node_t* node, gpointer user_data)
GList* i;
if (G_TRYLOCK (fen_lock)) {
if (node) {
travel_nodes (node, &op);
_travel_nodes (node, &op);
}
G_UNLOCK (fen_lock);
}