diff options
author | m0gg | 2006-12-16 16:09:45 +0000 |
---|---|---|
committer | m0gg | 2006-12-16 16:09:45 +0000 |
commit | d7bead298ebcacf0726f2ea25764003526b564b7 (patch) | |
tree | 335dd680887dce75a6fc02bf3d0e55dc53c818da /nanohttp | |
parent | 00d74ec45b1c26ec2d8bd9f2a32df79873f4a24b (diff) | |
download | csoap-d7bead298ebcacf0726f2ea25764003526b564b7.tar.gz csoap-d7bead298ebcacf0726f2ea25764003526b564b7.tar.bz2 |
Code cleanup
Diffstat (limited to 'nanohttp')
-rw-r--r-- | nanohttp/nanohttp-url.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/nanohttp/nanohttp-url.c b/nanohttp/nanohttp-url.c index 194eba9..316fd27 100644 --- a/nanohttp/nanohttp-url.c +++ b/nanohttp/nanohttp-url.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: nanohttp-url.c,v 1.2 2006/12/10 19:21:07 m0gg Exp $ +* $Id: nanohttp-url.c,v 1.3 2006/12/16 16:09:45 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -29,6 +29,18 @@ #include <stdio.h> #endif +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#endif + +#ifdef HAVE_STRING_H +#include <string.h> +#endif + +#ifdef HAVE_NETINET_IN_H +#include <netinet/in.h> +#endif + #ifdef HAVE_ERRNO_H #include <errno.h> #endif |