From 6a0123a52b78d3bfb288ac428ccd5d0ab0e0d18b Mon Sep 17 00:00:00 2001 From: Alex Denes Date: Sat, 28 Aug 2021 22:58:50 +0000 Subject: [PATCH] Use cl_ namespace for interface as well --- llist.c | 2 +- llist.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llist.c b/llist.c index fbec88d..1e24158 100644 --- a/llist.c +++ b/llist.c @@ -54,7 +54,7 @@ enum { // Avoid collision in error numbers CORELIBS_LLIST_ERR_OK = 1, }; -struct corelibs_llist_interface const llist = { +struct corelibs_llist_interface const cl_llist = { .create = corelibs_llist_create, .link = corelibs_llist_link, .rep = corelibs_llist_rep, diff --git a/llist.h b/llist.h index 85c315c..8c313a8 100644 --- a/llist.h +++ b/llist.h @@ -54,7 +54,7 @@ struct corelibs_llist_interface { } args; } err; }; -extern const struct corelibs_llist_interface llist; +extern const struct corelibs_llist_interface cl_llist; #endif /* CORELIBS_GUARD_LLIST */