1 From 77e399899d9d7297d23c321811b628febdf0fd92 Mon Sep 17 00:00:00 2001
2 From: Peter Seiderer <ps.report@gmx.net>
3 Date: Thu, 16 Apr 2015 22:43:49 +0200
4 Subject: [PATCH] tftp.h/tftpd.h: fix musl compile (missing include)
6 Add sys/types.h include for u_char typedef.
8 Signed-off-by: Peter Seiderer <ps.report@gmx.net>
12 2 files changed, 2 insertions(+)
14 diff --git a/tftp.h b/tftp.h
15 index 12bd6aa..32a3f63 100644
21 #include <sys/times.h>
22 +#include <sys/types.h>
26 diff --git a/tftpd.h b/tftpd.h
27 index 945065e..60d3a49 100644
32 #include <arpa/tftp.h>
33 #include <arpa/inet.h>
34 +#include <sys/types.h>