summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-05-05 18:24:33 +0200
committerJavier Jardón <jjardon@gnome.org>2010-05-06 17:42:09 +0200
commit21302a741cbb3d6373a368df148f6267a0705366 (patch)
treef2099ce15df8e979eb0c671a41fed48489683c5d
parentd1642386c96b4a2a4479cd7c2b5cd8ddadae99e4 (diff)
downloadglib-21302a741cbb3d6373a368df148f6267a0705366.tar.gz
Clean Glib header #include issues: gtestutils
-rw-r--r--glib/gtestutils.c13
-rw-r--r--glib/gtestutils.h1
2 files changed, 11 insertions, 3 deletions
diff --git a/glib/gtestutils.c b/glib/gtestutils.c
index a6888de6b..a21c3e568 100644
--- a/glib/gtestutils.c
+++ b/glib/gtestutils.c
@@ -17,10 +17,11 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
#include "config.h"
+
#include "gtestutils.h"
-#include <glib.h>
-#include "galias.h"
+
#include <sys/types.h>
#ifdef G_OS_UNIX
#include <sys/wait.h>
@@ -41,6 +42,14 @@
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif /* HAVE_SYS_SELECT_H */
+
+#include "gmain.h"
+#include "gpattern.h"
+#include "grand.h"
+#include "gstrfuncs.h"
+#include "gtimer.h"
+
+#include "galias.h"
/* Global variable for storing assertion messages; this is the counterpart to
* glibc's (private) __abort_msg variable, and allows developers and crash
diff --git a/glib/gtestutils.h b/glib/gtestutils.h
index 18f1edece..fdcc24a21 100644
--- a/glib/gtestutils.h
+++ b/glib/gtestutils.h
@@ -27,7 +27,6 @@
#include <glib/gmessages.h>
#include <glib/gstring.h>
-#include <glib/gtypes.h>
#include <glib/gerror.h>
#include <glib/gslist.h>