Clang16 will not allow using undeclared library functions by default. This imports ctype.h into that check so isdigit() can be used without errors. Bug: https://bugs.gentoo.org/879737 PR upstream: https://github.com/deanproxy/eMail/pull/63 Signed-off-by: Pascal Jäger --- a/check_strftime.sh +++ b/check_strftime.sh @@ -14,6 +14,7 @@ cat << EOF > /tmp/strftime_try.c #include #include #include +#include int main (void)