diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-10-25 17:27:39 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-10-25 17:27:39 +0000 |
commit | 4ac03908fcb4966d44b816f1a828d5e237912f3d (patch) | |
tree | a3f6e1753d30339b05edb01228613cc445a7664e /src/tinyproxy.c | |
parent | 722a7d2142347a9fabd32ebc0fc6b9d94de492e2 (diff) |
Header reorganization. Basically all system headers are now included in
tinyproxy.h and all the other files include the tinyproxy.h header. This
moves all the dependancy issues into one file.
Diffstat (limited to 'src/tinyproxy.c')
-rw-r--r-- | src/tinyproxy.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/tinyproxy.c b/src/tinyproxy.c index 8269ea1..fa6280a 100644 --- a/src/tinyproxy.c +++ b/src/tinyproxy.c @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.c,v 1.17 2001-09-16 20:11:54 rjkaes Exp $ +/* $Id: tinyproxy.c,v 1.18 2001-10-25 17:27:39 rjkaes Exp $ * * The initialise routine. Basically sets up all the initial stuff (logfile, * listening socket, config options, etc.) and then sits there and loops @@ -24,15 +24,6 @@ #include "tinyproxy.h" -#ifdef HAVE_SYS_RESOURCE_H -# include <sys/resource.h> -#endif /* HAVE_SYS_RESOUCE_H */ -#include <grp.h> -#include <pwd.h> -#include <signal.h> -#include <sysexits.h> -#include <syslog.h> - #include "anonymous.h" #include "buffer.h" #include "dnscache.h" |