aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeth Alves <alves@src.gnome.org>2000-04-26 22:56:47 +0800
committerSeth Alves <alves@src.gnome.org>2000-04-26 22:56:47 +0800
commit19de6b40b6a2a399c317728d304c0b005c7ceb0b (patch)
treed632bbb1f316f3d80a93d74aa89db4330b70a691
parent35d11190bcb9546e86766c14368a25c0db1a0855 (diff)
downloadgsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.tar
gsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.tar.gz
gsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.tar.bz2
gsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.tar.lz
gsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.tar.xz
gsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.tar.zst
gsoc2013-evolution-19de6b40b6a2a399c317728d304c0b005c7ceb0b.zip
move #include <locale.h> above the others because it was getting
wigged out on a solaris build. svn path=/trunk/; revision=2634
-rw-r--r--e-util/e-xml-utils.c3
-rw-r--r--e-util/e-xml-utils.c-568263
2 files changed, 4 insertions, 2 deletions
diff --git a/e-util/e-xml-utils.c b/e-util/e-xml-utils.c
index 250451f148..7e88dbaedd 100644
--- a/e-util/e-xml-utils.c
+++ b/e-util/e-xml-utils.c
@@ -20,9 +20,10 @@
* Boston, MA 02111-1307, USA.
*/
+#include <locale.h>
#include "e-xml-utils.h"
#include <gnome-xml/parser.h>
-#include <locale.h>
+
xmlNode *e_xml_get_child_by_name(xmlNode *parent, xmlChar *child_name)
{
diff --git a/e-util/e-xml-utils.c-56826 b/e-util/e-xml-utils.c-56826
index 250451f148..7e88dbaedd 100644
--- a/e-util/e-xml-utils.c-56826
+++ b/e-util/e-xml-utils.c-56826
@@ -20,9 +20,10 @@
* Boston, MA 02111-1307, USA.
*/
+#include <locale.h>
#include "e-xml-utils.h"
#include <gnome-xml/parser.h>
-#include <locale.h>
+
xmlNode *e_xml_get_child_by_name(xmlNode *parent, xmlChar *child_name)
{