# HG changeset patch # User Richard M. Stallman # Date 770840986 0 # Node ID 52e2eb6245d409a2d870059f99055446b5c7639c # Parent cd93cee36101e76114b431e47ba35bcd0b505b42 Include systime.h after xterm.h. diff -r cd93cee36101 -r 52e2eb6245d4 src/dispnew.c --- 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 #define max(a, b) ((a) > (b) ? (a) : (b))