1 From 060ad28b9ca5e99d7c6e8010132da58a3a8a0585 Mon Sep 17 00:00:00 2001
2 From: Gustavo Zacarias <gustavo@zacarias.com.ar>
3 Date: Fri, 22 Jan 2016 10:19:18 -0300
4 Subject: [PATCH] pqueue.h: include sys/types.h
6 We're using u_int32_t here, this breaks on musl libc builds otherwise.
8 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
10 Patch status: sent upstream to the devel mailing list
11 (moderated, no archive link yet)
14 1 file changed, 1 insertion(+)
16 diff --git a/pqueue.h b/pqueue.h
17 index a56590f..8c60c62 100644
24 +#include <sys/types.h>
26 /* wait this many seconds for missing packets before forgetting about them */
27 #define DEFAULT_PACKET_TIMEOUT 0.3