diff options
author | Yang Tse <yangsita@gmail.com> | 2008-02-28 00:55:06 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-02-28 00:55:06 +0000 |
commit | ed63d9d4de2c40ee2bb15f3f2ffed0d9bfe54c22 (patch) | |
tree | d76ac6f2c064c5a952f43623d51ac3e335cdcfab /tests/server/resolve.c | |
parent | 8adc7038fe513ff3651845be186560686e797f14 (diff) | |
download | curl-ed63d9d4de2c40ee2bb15f3f2ffed0d9bfe54c22.tar.gz |
header inclusion cleanup
Diffstat (limited to 'tests/server/resolve.c')
-rw-r--r-- | tests/server/resolve.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/tests/server/resolve.c b/tests/server/resolve.c index b579d460e..75b86432b 100644 --- a/tests/server/resolve.c +++ b/tests/server/resolve.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -32,16 +32,9 @@ */ #include "setup.h" /* portability help from the lib directory */ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <stdarg.h> +#ifdef HAVE_SIGNAL_H #include <signal.h> -#include <time.h> -#include <ctype.h> -#include <sys/time.h> -#include <sys/types.h> - +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif |