bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 3/4] lwip: Add headers to the tun driver


From: Joan Lledó
Subject: [PATCH 3/4] lwip: Add headers to the tun driver
Date: Sun, 31 Mar 2019 19:55:40 +0200

Since O_CREAT and pals are not included for other headers anymore

* lwip/port/netif/hurdtunif.c:
        * Include sys/types.h, sys/stat.h and fcntl.h
---
 lwip/port/netif/hurdtunif.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lwip/port/netif/hurdtunif.c b/lwip/port/netif/hurdtunif.c
index 80b5280d..728db9ac 100644
--- a/lwip/port/netif/hurdtunif.c
+++ b/lwip/port/netif/hurdtunif.c
@@ -23,6 +23,9 @@
 #include <netif/hurdtunif.h>
 
 #include <hurd/trivfs.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
 #include <net/if.h>
 #include <net/if_arp.h>
 #include <error.h>
-- 
2.17.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]