From d5bc4e92e6253000ffdcb5a63d4fdeaf58a5bbd1 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Thu, 10 Dec 2015 10:53:45 +0100 Subject: [PATCH] sys_timex: move inclusion of sys/timex.h to sysincl.h It will be needed by privops. --- sys_timex.h | 2 -- sysincl.h | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys_timex.h b/sys_timex.h index c15b16c..b8617a2 100644 --- a/sys_timex.h +++ b/sys_timex.h @@ -27,8 +27,6 @@ #ifndef GOT_SYS_TIMEX_H #define GOT_SYS_TIMEX_H -#include - #include "localp.h" extern void SYS_Timex_Initialise(void); diff --git a/sysincl.h b/sysincl.h index 2132f82..1caf586 100644 --- a/sysincl.h +++ b/sysincl.h @@ -59,6 +59,10 @@ #include #include +#if defined(LINUX) || defined(FREEBSD) || defined(NETBSD) || defined(SOLARIS) +#include +#endif + #ifdef HAVE_INTTYPES_H #include #elif HAVE_STDINT_H