diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-16 05:25:57 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-16 05:25:57 +0200 |
commit | dfb33a9737e62ab872d3937b7690b252d2892fe8 (patch) | |
tree | 2cdc28e66d418c32c96cb2572c81cf9a3f8517bb /src/shared/strv.h | |
parent | 82da66fb750c91f06e713ff23a5e5c57ff05c2a8 (diff) |
macro: rework how we define cleanup macros
There's now a generic _cleanup_ macro with an argument. The macros for
specific types are now defined using this macro, and in the header files
where they belong.
All cleanup handlers are now inline functions.
Diffstat (limited to 'src/shared/strv.h')
-rw-r--r-- | src/shared/strv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/strv.h b/src/shared/strv.h index 4cd3865e1d..92696b02fa 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -34,6 +34,8 @@ static inline void strv_freep(char ***l) { strv_free(*l); } +#define _cleanup_strv_free_ _cleanup_(strv_freep) + char **strv_copy(char * const *l) _malloc_; unsigned strv_length(char * const *l); |