Use cl_ namespace for interface as well

This commit is contained in:
Alex D. 2021-08-28 22:58:50 +00:00
parent 14f6970a24
commit 6a0123a52b
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ enum { // Avoid collision in error numbers
CORELIBS_LLIST_ERR_OK = 1, CORELIBS_LLIST_ERR_OK = 1,
}; };
struct corelibs_llist_interface const llist = { struct corelibs_llist_interface const cl_llist = {
.create = corelibs_llist_create, .create = corelibs_llist_create,
.link = corelibs_llist_link, .link = corelibs_llist_link,
.rep = corelibs_llist_rep, .rep = corelibs_llist_rep,

View File

@ -54,7 +54,7 @@ struct corelibs_llist_interface {
} args; } args;
} err; } err;
}; };
extern const struct corelibs_llist_interface llist; extern const struct corelibs_llist_interface cl_llist;
#endif /* CORELIBS_GUARD_LLIST */ #endif /* CORELIBS_GUARD_LLIST */