From: Fredrik Tolf Date: Fri, 4 Mar 2011 19:57:58 +0000 (+0100) Subject: lib: Fixed header usability out of tree. X-Git-Tag: 0.7~1^2~7 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=b008ba9e509b87a440c634bd9b3019d6701ba173 lib: Fixed header usability out of tree. --- diff --git a/lib/cf.h b/lib/cf.h index 35529c2..862df4e 100644 --- a/lib/cf.h +++ b/lib/cf.h @@ -1,7 +1,7 @@ #ifndef _ASHCONF_H #define _ASHCONF_H -#include +#include "req.h" struct cfstate { struct muth *pf; diff --git a/lib/proc.h b/lib/proc.h index 72bff20..6d2ea92 100644 --- a/lib/proc.h +++ b/lib/proc.h @@ -1,7 +1,7 @@ #ifndef _LIB_PROC_H #define _LIB_PROC_H -#include +#include "req.h" int stdmkchild(char **argv, void (*chinit)(void *), void *idata); int sendfd(int sock, int fd, char *data, size_t datalen); diff --git a/lib/resp.h b/lib/resp.h index 8f18f87..6cb7ec3 100644 --- a/lib/resp.h +++ b/lib/resp.h @@ -1,7 +1,7 @@ #ifndef _LIB_HTRESP_H #define _LIB_HTRESP_H -#include +#include "req.h" char *urlquote(char *text); char *htmlquote(char *text);