style: rename closure_* functions as closure_*

This is more consistent with the other files.

* closure.h, closure.c (new_closure, free_closure): Rename as...
(closure_new, closure_free): this.
Adjust dependencies.
This commit is contained in:
Akim Demaille
2019-01-27 20:14:11 +01:00
parent e585377e68
commit 7355a35e4b
6 changed files with 15 additions and 15 deletions

View File

@@ -184,10 +184,10 @@ print_graph (void)
start_graph (fgraph);
/* Output nodes and edges. */
new_closure (nritems);
closure_new (nritems);
for (int i = 0; i < nstates; i++)
print_state (states[i], fgraph);
free_closure ();
closure_free ();
finish_graph (fgraph);
xfclose (fgraph);