diff options
Diffstat (limited to 'dsf.c')
| -rw-r--r-- | dsf.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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); |