diff options
author | Federico Mena Quintero <federico@ximian.com> | 2004-03-06 03:38:59 +0000 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2004-03-06 03:38:59 +0000 |
commit | 80581c3011871fa000433a881554ffc1e9363468 (patch) | |
tree | 8b528a2413d95ba1c4831b7bf02a5b583924e438 /gdk/x11/gdkim-x11.c | |
parent | 7d94c90fca82c3543c5f860fc5e57cf36a966db8 (diff) | |
download | gtk+-80581c3011871fa000433a881554ffc1e9363468.tar.gz |
Fixes #136082 and #135265, patch by Morten Welinder.
2004-03-05 Federico Mena Quintero <federico@ximian.com>
Fixes #136082 and #135265, patch by Morten Welinder.
* configure.in: Use AC_SYS_LARGEFILE.
* */*.c: #include <config.h>
Diffstat (limited to 'gdk/x11/gdkim-x11.c')
-rw-r--r-- | gdk/x11/gdkim-x11.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gdk/x11/gdkim-x11.c b/gdk/x11/gdkim-x11.c index 263b149f19..bbcd39bebc 100644 --- a/gdk/x11/gdkim-x11.c +++ b/gdk/x11/gdkim-x11.c @@ -24,8 +24,11 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ +#include <config.h> + #include <locale.h> #include <stdlib.h> +#include <string.h> #include "gdkx.h" #include "gdk.h" /* For gdk_flush() */ @@ -34,13 +37,6 @@ #include "gdkinternals.h" #include "gdkdisplay-x11.h" -#if HAVE_CONFIG_H -# include <config.h> -# if STDC_HEADERS -# include <string.h> -# endif -#endif - /* If this variable is FALSE, it indicates that we should * avoid trying to use multibyte conversion functions and |