From 2b97a9573f0bd77a91453693e0af622450a13df7 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Wed, 24 Jan 2018 09:53:49 -0500 Subject: [PATCH] Include time.h in sd-event.h The time-related functions in sd-event.h take as inputs constants (CLOCK_*) defined in time.h. By including time.h in sd-event.h, we free the developer from having to do this manually. --- src/systemd/sd-event.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/systemd/sd-event.h b/src/systemd/sd-event.h index 57c1692..676d870 100644 --- a/src/systemd/sd-event.h +++ b/src/systemd/sd-event.h @@ -26,6 +26,7 @@ #include #include #include +#include #include "_sd-common.h" -- 2.7.4