commit 52251c6854e85fb931e67dd6e2752018a9ebb085 from: Theo Buehler via: Stefan Sperling date: Mon May 20 20:19:23 2024 UTC include stdio.h explicitly in utf8.c extern.h depends on stdio.h because of FILENAME_MAX. wchar.h will stop pulling in stdio.h, hence break the build in utf8.c which will no longer pull in stdio.h. Patch by tb@ commit - 00166cee7f1dc5ac73874b40670df0aa925aa003 commit + 52251c6854e85fb931e67dd6e2752018a9ebb085 blob - 3b8ccdda1f8b9b0e4408f33ffb6cf057c82f8432 blob + 58435a5acd23d9c141c54f360faeb1597deb809b --- utf8.c +++ utf8.c @@ -16,6 +16,7 @@ */ #include +#include #include #include #include