From 48a0fdb941da6f2e1f434d734e6dd28d54bf4ec2 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Tue, 14 Jul 2015 21:24:37 +0200 Subject: [PATCH] log2asc: include sys/time.h Without this patch compilation against musl C library breaks, because struct timeval cannot be found. Signed-off-by: Yegor Yefremov --- log2asc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/log2asc.c b/log2asc.c index 29d13e8..8fb88a9 100644 --- a/log2asc.c +++ b/log2asc.c @@ -48,6 +48,7 @@ #include #include +#include #include #include "lib.h"