I just tried to compile the package with clang-14. It said:
lcllib.c:86:3: warning: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Wstring-concatenation]
Source code is
"assert",
"complex"
"ctype",
Maybe better code:
"assert",
"complex",
"ctype",