From e87944765bf4353c0b9b30b3d11172247da35d29 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Dj=C3=A4rv?= Date: Tue, 21 Jan 2003 18:14:05 +0000 Subject: [PATCH] gtkutil.c: Must include stdio.h before termhooks.h --- src/ChangeLog | 4 ++++ src/gtkutil.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index b08445ecd46..270a3d2e434 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2003-01-21 Jan D. + + * gtkutil.c: Must include stdio.h before termhooks.h + 2003-01-21 Dave Love * alloc.c (Fgc_status): Print zombie list. diff --git a/src/gtkutil.c b/src/gtkutil.c index 7ceddef02f6..ba5ffb97155 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -22,6 +22,8 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #ifdef USE_GTK +#include +#include #include "lisp.h" #include "xterm.h" #include "blockinput.h" @@ -29,8 +31,6 @@ Boston, MA 02111-1307, USA. */ #include "atimer.h" #include "gtkutil.h" #include "termhooks.h" -#include -#include #include #define FRAME_TOTAL_PIXEL_HEIGHT(f) \ -- 2.11.4.GIT