From b2abe0d250b6996c3a4ef01211edf48096433203 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 5 Feb 2018 20:41:10 +0100 Subject: [PATCH] gossipd: Move include of time.h to routing.h Commit a57a2dcb860ee315cb7ce04be9e37e16e5a6ae1e introduced a time_t in routing.h. So also move the time.h include to the header. This fixes the build on FreeBSD. Signed-off-by: Wladimir J. van der Laan --- gossipd/routing.c | 1 - gossipd/routing.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/gossipd/routing.c b/gossipd/routing.c index 7845904de..719ddc548 100644 --- a/gossipd/routing.c +++ b/gossipd/routing.c @@ -7,7 +7,6 @@ #include #include #include -#include #include #include #include diff --git a/gossipd/routing.h b/gossipd/routing.h index 4b5a56adc..a709fa98c 100644 --- a/gossipd/routing.h +++ b/gossipd/routing.h @@ -3,6 +3,7 @@ #include "config.h" #include #include +#include #include #include #include