constant globals checking
[ccc.git] / scc.h
diff --git a/scc.h b/scc.h
index d7c378e..2392556 100644 (file)
--- a/scc.h
+++ b/scc.h
@@ -1,7 +1,6 @@
 #ifndef SCC_H
 #define SCC_H
 
-#include <stdbool.h>
 struct edge {
        void *from;
        void *to;
@@ -33,6 +32,6 @@ struct components *scc(int nnodes, void **nodedata, int nedges, struct edge *edg
  * @param cs components
  * @param freefun function to free the data with, if NULL, data isn't freed
  */
-void components_free(struct components *cs, void (*free)(void *));
+void components_free(struct components *cs, void (*freefun)(void *));
 
 #endif