diff --git a/src/avl/avl.c b/src/avl/avl.c index 1a8ed630..a82bb6e1 100644 --- a/src/avl/avl.c +++ b/src/avl/avl.c @@ -22,13 +22,17 @@ * */ -/* $Id: avl.c,v 1.2 2003/03/06 00:59:41 brendan Exp $ */ +/* $Id: avl.c,v 1.3 2003/03/08 16:05:38 karl Exp $ */ /* * This is a fairly straightfoward translation of a prototype * written in python, 'avl_tree.py'. Read that file first. */ +#ifdef HAVE_CONFIG_H + #include +#endif + #include #include diff --git a/src/httpp/httpp.c b/src/httpp/httpp.c index 49869ae6..629710dd 100644 --- a/src/httpp/httpp.c +++ b/src/httpp/httpp.c @@ -3,6 +3,10 @@ ** http parsing engine */ +#ifdef HAVE_CONFIG_H + #include +#endif + #include #include diff --git a/src/net/resolver.c b/src/net/resolver.c index 95d2c943..e3ab6711 100644 --- a/src/net/resolver.c +++ b/src/net/resolver.c @@ -4,6 +4,9 @@ ** name resolver library ** */ +#ifdef HAVE_CONFIG_H + #include +#endif #include #include diff --git a/src/net/sock.c b/src/net/sock.c index d5a8f519..07d4e2b1 100644 --- a/src/net/sock.c +++ b/src/net/sock.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H + #include +#endif + #include #include #include diff --git a/src/thread/thread.c b/src/thread/thread.c index 21b7e5b8..4cd28691 100644 --- a/src/thread/thread.c +++ b/src/thread/thread.c @@ -18,6 +18,10 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H + #include +#endif + #include #include #include diff --git a/src/timing/timing.c b/src/timing/timing.c index c1299e2b..ae2e7e02 100644 --- a/src/timing/timing.c +++ b/src/timing/timing.c @@ -2,6 +2,10 @@ ** - Timing functions */ +#ifdef HAVE_CONFIG_H + #include +#endif + #include #include #ifdef HAVE_STDINT_H