Download raw body.
Add missing <sys/types.h> to lib/utf8.c
Another micro patch... Add missing <sys/types.h> include. lib/utf8.c includes got_error.h, which uses uint32_t when declaring got_error_uuid(). However, there is no preceding explicit include for <sys/types.h>. On OpenBSD it just happens to be pulled in by some other system header. ok? diff 6c13dcd2d0d730f9f9fc0fb0c42eb0f409216063 /home/naddy/got blob - 41c3f2e47158bafbf6229ab2c3b32dbb106c2e93 file + lib/utf8.c --- lib/utf8.c +++ lib/utf8.c @@ -15,6 +15,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/types.h> + #include <err.h> #include <stdlib.h> #include <string.h> -- Christian "naddy" Weisgerber naddy@mips.inka.de
Add missing <sys/types.h> to lib/utf8.c