diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-14 17:38:18 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-14 17:38:18 +0100 |
commit | a0b207164c6c943adb8b3bf89b375a491b41806a (patch) | |
tree | 4b28e66f9b15d8e86cddd8ad4656ed3cf0ac9a90 /tests/libtest | |
parent | f254c59dc7d3559d062c00704e00431bc4504b67 (diff) |
setup_once.h: refactor inclusion of <unistd.h> and <sys/socket.h>
Inclusion of top two most included header files now done in setup_once.h
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib1502.c | 7 | ||||
-rw-r--r-- | tests/libtest/lib505.c | 9 | ||||
-rw-r--r-- | tests/libtest/test.h | 10 |
3 files changed, 1 insertions, 25 deletions
diff --git a/tests/libtest/lib1502.c b/tests/libtest/lib1502.c index bb008f17c..1ded5ab7c 100644 --- a/tests/libtest/lib1502.c +++ b/tests/libtest/lib1502.c @@ -30,13 +30,6 @@ #include <limits.h> #endif -#include <stdio.h> -#include <string.h> - -/* somewhat unix-specific */ -#include <sys/time.h> -#include <unistd.h> - int test(char *URL) { CURL *ehandle; diff --git a/tests/libtest/lib505.c b/tests/libtest/lib505.c index 394131ebe..99b3a0afe 100644 --- a/tests/libtest/lib505.c +++ b/tests/libtest/lib505.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2012, 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 @@ -21,17 +21,10 @@ ***************************************************************************/ #include "test.h" -#ifdef HAVE_SYS_SOCKET_H -#include <sys/socket.h> -#endif #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif - #include "memdebug.h" /* diff --git a/tests/libtest/test.h b/tests/libtest/test.h index ffa4be166..fcc91ad8b 100644 --- a/tests/libtest/test.h +++ b/tests/libtest/test.h @@ -30,21 +30,11 @@ #include "setup.h" #include <curl/curl.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#ifdef HAVE_SYS_SOCKET_H -#include <sys/socket.h> -#endif #ifdef HAVE_SYS_SELECT_H /* since so many tests use select(), we can just as well include it here */ #include <sys/select.h> #endif -#ifdef HAVE_UNISTD_H -/* at least somewhat oldish FreeBSD systems need this for select() */ -#include <unistd.h> -#endif #ifdef TPF # include "select.h" |