changeset 7808:52e2eb6245d4

Include systime.h after xterm.h.
author Richard M. Stallman <rms@gnu.org>
date Sun, 05 Jun 1994 18:29:46 +0000
parents cd93cee36101
children cf23573fa6fb
files src/dispnew.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dispnew.c	Sun Jun 05 18:28:57 1994 +0000
+++ b/src/dispnew.c	Sun Jun 05 18:29:46 1994 +0000
@@ -39,12 +39,14 @@
 #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 <errno.h>
 
 #define max(a, b) ((a) > (b) ? (a) : (b))