Commit Diff
- Commit:
52251c6854e85fb931e67dd6e2752018a9ebb085
- From:
- Theo Buehler <tb@theobuehler.org>
- Via:
- Stefan Sperling <stsp@stsp.name>
- Date:
- Message:
- 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@
- Actions:
- Patch | Tree
--- utf8.c +++ utf8.c @@ -16,6 +16,7 @@ */ #include <errno.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <wchar.h>