From: Richard M. Stallman Date: Sun, 5 Jun 1994 18:29:46 +0000 (+0000) Subject: Include systime.h after xterm.h. X-Git-Tag: emacs-19.34~8045 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6cbd1643c9e247a336633df618999bb0904f4880;p=emacs.git Include systime.h after xterm.h. --- 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))