From 6cbd1643c9e247a336633df618999bb0904f4880 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 5 Jun 1994 18:29:46 +0000 Subject: [PATCH] Include systime.h after xterm.h. --- src/dispnew.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index 55292196bf6..f5234b6fa67 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -39,12 +39,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "intervals.h" #include "systty.h" -#include "systime.h" #ifdef HAVE_X_WINDOWS #include "xterm.h" #endif /* HAVE_X_WINDOWS */ +/* Include systime.h after xterm.h to avoid double inclusion of time.h. */ +#include "systime.h" + #include #define max(a, b) ((a) > (b) ? (a) : (b)) -- 2.39.5