From c6e30cf3a855e651f61663fcb8b465b0fec2a749 Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Thu, 28 Nov 2013 21:19:00 -0700 Subject: [PATCH] Bug 3967: ipc/Kid.cc compilation failure: 'time' was not declared in this scope Function time() comes from , so add the necessary #include. --- src/ipc/Kid.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ipc/Kid.cc b/src/ipc/Kid.cc index ee54cfb114..79c38e3095 100644 --- a/src/ipc/Kid.cc +++ b/src/ipc/Kid.cc @@ -7,6 +7,10 @@ #include "globals.h" #include "ipc/Kid.h" +#if HAVE_TIME_H +#include +#endif + #if HAVE_SYS_WAIT_H #include #endif -- 2.47.2