summaryrefslogtreecommitdiff
path: root/strv.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-02-03 14:25:37 +0100
committerLennart Poettering <lennart@poettering.net>2010-02-03 14:25:37 +0100
commita65d570117dc73a3af5084319b645ab1556562e5 (patch)
treecd53759875da62de10383e86cf6bfa3f0496bddd /strv.h
parent47be870bd83fb3719dffc3ee9348a409ab762a14 (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/strv.h b/strv.h
index abe9192545..7a132ef687 100644
--- a/strv.h
+++ b/strv.h
@@ -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)++)