diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-02-03 14:25:37 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-02-03 14:25:37 +0100 |
commit | a65d570117dc73a3af5084319b645ab1556562e5 (patch) | |
tree | cd53759875da62de10383e86cf6bfa3f0496bddd /strv.h | |
parent | 47be870bd83fb3719dffc3ee9348a409ab762a14 (diff) |
macro: drop double __ prefix to make sure we don't collide with gcc/glibc definitions
Diffstat (limited to 'strv.h')
-rw-r--r-- | strv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ char **strv_merge(char **a, char **b); bool strv_contains(char **l, const char *s); -char **strv_new(const char *x, ...) __sentinel; +char **strv_new(const char *x, ...) _sentinel; #define STRV_FOREACH(s, l) \ for ((s) = (l); (s) && *(s); (s)++) |