]> git.eshelyaron.com Git - emacs.git/commitdiff
gtkutil.c: Must include stdio.h before termhooks.h
authorJan Djärv <jan.h.d@swipnet.se>
Tue, 21 Jan 2003 18:14:05 +0000 (18:14 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Tue, 21 Jan 2003 18:14:05 +0000 (18:14 +0000)
src/ChangeLog
src/gtkutil.c

index b08445ecd4669d97624bc6fa9c472ad92f424988..270a3d2e4342e02ee40c789fb80f228ac4f2055b 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-21  Jan D.  <jan.h.d@swipnet.se>
+
+       * gtkutil.c: Must include stdio.h before termhooks.h
+
 2003-01-21  Dave Love  <fx@gnu.org>
 
        * alloc.c (Fgc_status): Print zombie list.
index 7ceddef02f654b1887c1ab340221d75344ab597e..ba5ffb97155f05711b41f0bb475bd5ede1f99b06 100644 (file)
@@ -22,6 +22,8 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 
 #ifdef USE_GTK
+#include <string.h>
+#include <stdio.h>
 #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 <string.h>
-#include <stdio.h>
 #include <gdk/gdkkeysyms.h>
 
 #define FRAME_TOTAL_PIXEL_HEIGHT(f) \