aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib501.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-12-12 13:40:16 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-12-12 13:40:16 +0000
commit0f493b6038d257bbfea2344a58847fedc9378671 (patch)
treeb65beb9e0bc55b683a82640c1700a5a68dbf56ec /tests/libtest/lib501.c
parentf26b709c50d44a60527aa21b86adfdc086b88ba6 (diff)
fixes
Diffstat (limited to 'tests/libtest/lib501.c')
-rw-r--r--tests/libtest/lib501.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/tests/libtest/lib501.c b/tests/libtest/lib501.c
index 4199598fa..2ed1a9ae4 100644
--- a/tests/libtest/lib501.c
+++ b/tests/libtest/lib501.c
@@ -1,13 +1,14 @@
-#include "first.c"
+#include "test.h"
-fprintf(stderr, "URL: %s\n", argv[1]);
+CURLcode test(char *URL)
+{
+ CURLcode res;
+ CURL *curl = curl_easy_init();
-CURL *curl;
-CURLcode res;
-curl = curl_easy_init();
-curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
-res = curl_easy_perform(curl);
-curl_easy_cleanup(curl);
+ (void)URL; /* we don't use this */
+ curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
+ res = curl_easy_perform(curl);
+ curl_easy_cleanup(curl);
+ return res;
+}
-return res;
-#include "last.c"