summaryrefslogtreecommitdiff
path: root/src/mod_scgi.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2018-03-25 03:45:05 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2018-04-08 22:22:23 -0400
commit04d76e7afd8401c242aca24bed7f2c93a25238f4 (patch)
treeae96e9a6654d14850b91c9397030df6c9500fb6f /src/mod_scgi.c
parentfefc82153a0260635807ae427943d6fed3238809 (diff)
downloadlighttpd-git-04d76e7afd8401c242aca24bed7f2c93a25238f4.tar.gz
[core] some header cleanup
provide standard types in first.h instead of base.h provide lighttpd types in base_decls.h instead of settings.h reduce headers exposed by headers for core data structures do not expose <pcre.h> or <stdlib.h> in headers move stat_cache_entry to stat_cache.h reduce use of "server.h" and "base.h" in headers
Diffstat (limited to 'src/mod_scgi.c')
-rw-r--r--src/mod_scgi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_scgi.c b/src/mod_scgi.c
index 9510fb8d..1712c7b7 100644
--- a/src/mod_scgi.c
+++ b/src/mod_scgi.c
@@ -3,6 +3,7 @@
#include <sys/types.h>
#include <errno.h>
#include <limits.h>
+#include <stdlib.h>
#include <string.h>
#include "gw_backend.h"
@@ -13,7 +14,6 @@ typedef gw_handler_ctx handler_ctx;
#include "base.h"
#include "buffer.h"
#include "log.h"
-#include "plugin.h"
#include "status_counter.h"
#include "sys-endian.h"