From 696cbdbb688b16a2522f5ee98c56bf7c55071fab Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Mon, 16 Jun 2014 23:38:57 +0200 Subject: [PATCH] util.h, mode_t: sys/types.h defines mode_t see: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html this removes the warning with gcc (but musl didn't have this warning). --- util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.h b/util.h index 9cd7050..516a5c2 100644 --- a/util.h +++ b/util.h @@ -1,6 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include -#include +#include #include "arg.h" #define UTF8_POINT(c) (((c) & 0xc0) != 0x80)