summaryrefslogtreecommitdiff
path: root/ds.c
diff options
context:
space:
mode:
Diffstat (limited to 'ds.c')
-rw-r--r--ds.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ds.c b/ds.c
index eb235d6..99ad4d3 100644
--- a/ds.c
+++ b/ds.c
@@ -169,7 +169,6 @@ static void *arr_remove_(void *arr, size_t member_size, size_t index) {
#define arr__join2(a,b) a##b
#define arr__join(a,b) arr__join2(a,b) // macro used internally
-
// if the array is not NULL, free it and set it to NULL
#define arr_free(a) do { if (a) { free(arr_hdr_(a)); (a) = NULL; } } while (0)
// a nice alias