ell.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] build: fix time.h related breakage on musl
@ 2022-06-06 20:05 Milan P. Stanić
  2022-06-06 20:26 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Milan P. Stanić @ 2022-06-06 20:05 UTC (permalink / raw)
  To: ell; +Cc: Milan P. Stanić

missing time.h for struct timeval usage
forward declaration of struct timeval in time-private.h
---
 ell/dhcp-transport.c  | 1 +
 ell/dhcp6-transport.c | 1 +
 ell/icmp6.c           | 1 +
 ell/time-private.h    | 2 +-
 ell/time.c            | 1 +
 5 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ell/dhcp-transport.c b/ell/dhcp-transport.c
index ef030de..c4cf0ca 100644
--- a/ell/dhcp-transport.c
+++ b/ell/dhcp-transport.c
@@ -40,6 +40,7 @@
 #include <linux/filter.h>
 #include <net/if_arp.h>
 #include <errno.h>
+#include <sys/time.h>
 
 #include "io.h"
 #include "util.h"
diff --git a/ell/dhcp6-transport.c b/ell/dhcp6-transport.c
index 30c425f..5ff6516 100644
--- a/ell/dhcp6-transport.c
+++ b/ell/dhcp6-transport.c
@@ -35,6 +35,7 @@
 #include <net/if.h>
 #include <unistd.h>
 #include <errno.h>
+#include <sys/time.h>
 
 #include "private.h"
 #include "missing.h"
diff --git a/ell/icmp6.c b/ell/icmp6.c
index 368977f..7319903 100644
--- a/ell/icmp6.c
+++ b/ell/icmp6.c
@@ -36,6 +36,7 @@
 #include <net/if.h>
 #include <unistd.h>
 #include <errno.h>
+#include <sys/time.h>
 
 #include "private.h"
 #include "useful.h"
diff --git a/ell/time-private.h b/ell/time-private.h
index 5295d94..83c23dd 100644
--- a/ell/time-private.h
+++ b/ell/time-private.h
@@ -19,7 +19,7 @@
  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
-
+struct timeval;
 uint64_t _time_pick_interval_secs(uint32_t min_secs, uint32_t max_secs);
 uint64_t _time_fuzz_msecs(uint64_t ms);
 uint64_t _time_fuzz_secs(uint32_t secs, uint32_t max_offset);
diff --git a/ell/time.c b/ell/time.c
index 10e10b0..41e5725 100644
--- a/ell/time.c
+++ b/ell/time.c
@@ -26,6 +26,7 @@
 
 #define _GNU_SOURCE
 #include <time.h>
+#include <sys/time.h>
 
 #include "time.h"
 #include "time-private.h"
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] build: fix time.h related breakage on musl
  2022-06-06 20:05 [PATCH] build: fix time.h related breakage on musl Milan P. Stanić
@ 2022-06-06 20:26 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2022-06-06 20:26 UTC (permalink / raw)
  To: Milan P. Stanić, ell

Hi Milan,

On 6/6/22 15:05, Milan P. Stanić wrote:
> missing time.h for struct timeval usage
> forward declaration of struct timeval in time-private.h
> ---
>   ell/dhcp-transport.c  | 1 +
>   ell/dhcp6-transport.c | 1 +
>   ell/icmp6.c           | 1 +
>   ell/time-private.h    | 2 +-
>   ell/time.c            | 1 +
>   5 files changed, 5 insertions(+), 1 deletion(-)
> 

Applied, thanks!

Regards,
-Denis


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-06 20:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-06 20:05 [PATCH] build: fix time.h related breakage on musl Milan P. Stanić
2022-06-06 20:26 ` Denis Kenzior

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).