summaryrefslogtreecommitdiff
path: root/src/response.h
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/response.h
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/response.h')
-rw-r--r--src/response.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/response.h b/src/response.h
index a479e0f0..289add89 100644
--- a/src/response.h
+++ b/src/response.h
@@ -1,10 +1,10 @@
#ifndef _RESPONSE_H_
#define _RESPONSE_H_
-#include <time.h>
-
#include "server.h"
+#include <time.h>
+
int http_response_parse(server *srv, connection *con);
int http_response_write_header(server *srv, connection *con);