summaryrefslogtreecommitdiff
path: root/src/mod_cml.c
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2009-10-11 14:31:42 +0000
committerStefan Bühler <stbuehler@web.de>2009-10-11 14:31:42 +0000
commit22e8b456a9800efb92bd0f90a2e1b816d3b4bb07 (patch)
treee306fb18c0c0d4bd3177c4db7a736a8d1d605f40 /src/mod_cml.c
parentd69683ddb51df40bd175d525f8c53dd4abc2e6e0 (diff)
downloadlighttpd-git-22e8b456a9800efb92bd0f90a2e1b816d3b4bb07.tar.gz
Fix header inclusion order, always include "config.h" before any system header
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2624 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_cml.c')
-rw-r--r--src/mod_cml.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mod_cml.c b/src/mod_cml.c
index 03e264ce..f83eb803 100644
--- a/src/mod_cml.c
+++ b/src/mod_cml.c
@@ -1,12 +1,3 @@
-#include <sys/stat.h>
-#include <time.h>
-
-#include <stdlib.h>
-#include <string.h>
-#include <errno.h>
-#include <unistd.h>
-#include <stdio.h>
-
#include "buffer.h"
#include "server.h"
#include "log.h"
@@ -17,6 +8,15 @@
#include "mod_cml.h"
+#include <sys/stat.h>
+#include <time.h>
+
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+#include <unistd.h>
+#include <stdio.h>
+
/* init the plugin data */
INIT_FUNC(mod_cml_init) {
plugin_data *p;