Created attachment 827655 [details] clang-14 log This package has been identified via automation as potentially impacted by upcoming Clang 16 changes. The following have been identified as potential issues: [-Werror,-Wimplicit-function-declaration] [-Werror,-Wimplicit-function-declaration] error: call to undeclared library function 'strlcat' with type 'unsigned long (char *, const char *, unsigned long)'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] error: call to undeclared library function 'strlcpy' with type 'unsigned long (char *, const char *, unsigned long)'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration]
Created attachment 827657 [details] clang-15 log
Created attachment 827659 [details, diff] clang.diff
I looked at the diff. It is true clang-14 gives a warning while clang-15 gives an error, but they both fail afterwards at link time (the functions in question do not exist by default, they are in <bsd/string.h> and -lbsd). So in this case the functions are not implicitly declared, they are simply missing. Also if the functions did exist, `check_symbol_exists` has an include file, so they would both succeed.