aboutsummaryrefslogtreecommitdiff
path: root/dsf.c
diff options
context:
space:
mode:
Diffstat (limited to 'dsf.c')
-rw-r--r--dsf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/dsf.c b/dsf.c
index 832bb30..f967ffb 100644
--- a/dsf.c
+++ b/dsf.c
@@ -86,6 +86,11 @@ int *snew_dsf(int size)
return ret;
}
+void dsf_free(int *dsf)
+{
+ sfree(dsf);
+}
+
int dsf_canonify(int *dsf, int index)
{
return edsf_canonify(dsf, index, NULL);