diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/strv.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shared/strv.h b/src/shared/strv.h index 6ce21acdbd..daf9ad0d0b 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -82,7 +82,6 @@ bool strv_overlap(char **a, char **b) _pure_; #define STRV_FOREACH_PAIR(x, y, l) \ for ((x) = (l), (y) = (x+1); (x) && *(x) && *(y); (x) += 2, (y) = (x + 1)) - char **strv_sort(char **l); void strv_print(char **l); |