summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2008-05-22 15:01:42 +0000
committerJeffrey Stedfast <fejj@src.gnome.org>2008-05-22 15:01:42 +0000
commitddabcd9b7ca820350b6b3b83695c1daf8abf3b24 (patch)
tree3e9761f7be034f398426e983e809e53a1789723d
parentfe36591770a2f7bdfa8344be8dd03eda0ec37d88 (diff)
downloadevolution-data-server-ddabcd9b7ca820350b6b3b83695c1daf8abf3b24.tar.gz
header ordering
svn path=/trunk/; revision=8824
-rw-r--r--camel/camel-mime-utils.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index a7738b4a9..e8f5f54e4 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -24,21 +24,19 @@
#include <config.h>
#endif
-/* POSIX requires <sys/types.h> be included before <regex.h> */
-#include <sys/types.h>
-
-#include <ctype.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <pthread.h>
-#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <time.h>
-#include <unistd.h>
+#include <sys/types.h>
#include <sys/param.h> /* for MAXHOSTNAMELEN */
#include <sys/stat.h>
+#include <pthread.h>
+#include <unistd.h>
+#include <regex.h>
+#include <fcntl.h>
+#include <errno.h>
+#include <ctype.h>
+#include <time.h>
#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN 1024