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 */