commit 07d17b2f66f68e86d0858c662b86d4486bb1e817 parent 6a18a28e5de88e5d15df3bb1b1dd2adb4ea422d9 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 22 Nov 2018 18:28:12 +0100 POSIX struct timeval requires <sys/time.h> this makes hurl compile for Linux (musl). Reported by josuah, thanks! Diffstat:
M | hurl.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/hurl.c b/hurl.c @@ -1,4 +1,5 @@ #include <sys/socket.h> +#include <sys/time.h> #include <ctype.h> #include <err.h>