]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Renamed easy.h and multi.h to easyif.h and multiif.h to make sure they don't
authorDaniel Stenberg <daniel@haxx.se>
Tue, 11 Jan 2005 15:25:29 +0000 (15:25 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 11 Jan 2005 15:25:29 +0000 (15:25 +0000)
shadow our public headers with the former names.

lib/Makefile.inc
lib/easy.c
lib/easyif.h [moved from lib/easy.h with 89% similarity]
lib/multi.c
lib/multiif.h [moved from lib/multi.h with 88% similarity]
lib/strerror.c
lib/url.c

index 59de0593b13c0dfdec079cadcb2161e57b04a66a..4d5778fb1b37073789598b98c03888a920cc5a00 100644 (file)
@@ -17,4 +17,4 @@ HHEADERS = arpa_telnet.h netrc.h file.h timeval.h base64.h hostip.h   \
   http_chunks.h strtok.h connect.h llist.h hash.h content_encoding.h   \
   share.h md5.h http_digest.h http_negotiate.h http_ntlm.h ca-bundle.h \
   inet_pton.h strtoofft.h strerror.h inet_ntop.h curlx.h memory.h      \
-  setup.h transfer.h select.h
+  setup.h transfer.h select.h easyif.h multiif.h
index 9310b843a91ac0ac957cea0174f70eda52a5f282..986f5af7e58702199ba9d03722d84d04b346d20e 100644 (file)
@@ -82,7 +82,7 @@
 #include "share.h"
 #include "memory.h"
 #include "progress.h"
-#include "easy.h"
+#include "easyif.h"
 
 #define _MPRINTF_REPLACE /* use our functions only */
 #include <curl/mprintf.h>
similarity index 89%
rename from lib/easy.h
rename to lib/easyif.h
index 1a9e0d8d60fb7706930b1a7294221738302739f8..f901ab5955e35a526e56bcf6ed416fdfb52f530b 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __EASY_H
-#define __EASY_H
+#ifndef __EASYIF_H
+#define __EASYIF_H
 /***************************************************************************
  *                                  _   _ ____  _
  *  Project                     ___| | | |  _ \| |
  * $Id$
  ***************************************************************************/
 
-/* This file shadows for <curl/easy.h> in some compilers
- */
-#include <curl/easy.h>
-
 /*
  * Prototypes for library-wide functions provided by easy.c
  */
 void Curl_easy_addmulti(struct SessionHandle *data, void *multi);
 
-#endif /* __EASY_H */
+#endif /* __EASYIF_H */
index 6d037f09802378d2e9565ac682f6bd52449b674c..a2b230ff59f61e7eabd0f6f2f29a3cd5043b529b 100644 (file)
@@ -43,8 +43,8 @@
 #include "connect.h"
 #include "progress.h"
 #include "memory.h"
-#include "easy.h"
-#include "multi.h"
+#include "easyif.h"
+#include "multiif.h"
 
 /* The last #include file should be: */
 #include "memdebug.h"
similarity index 88%
rename from lib/multi.h
rename to lib/multiif.h
index ef84d6a1cb3e2284af51bda83570921314419035..5c3a9c53f0af2bedabe245c9416798885c2ddb6c 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __MULTI_H
-#define __MULTI_H
+#ifndef __MULTIIF_H
+#define __MULTIIF_H
 /***************************************************************************
  *                                  _   _ ____  _
  *  Project                     ___| | | |  _ \| |
  * $Id$
  ***************************************************************************/
 
- /* This file shadows for <curl/multi.h> in some compilers
- */
-#include <curl/multi.h>
-
 /*
  * Prototypes for library-wide functions provided by multi.c
  */
 void Curl_multi_rmeasy(void *multi, CURL *data);
 
-#endif /* __MULTI_H */
+#endif /* __MULTIIF_H */
index f07e1df479fa66b5c308f113ed02fe1461bf67db..ae618c6e4bc7f8bddd07d4fb47a73eb8ddd98945 100644 (file)
@@ -31,7 +31,6 @@
 #include <idna.h>
 #endif
 
-#include "multi.h"
 #include "strerror.h"
 
 #define _MPRINTF_REPLACE /* use our functions only */
index 6c3b662b4e2ba9424ba3393e428996041667a562..67e6340775a901230594d2b543455126b3095460 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -118,7 +118,7 @@ void idn_free (void *ptr); /* prototype from idn-free.h, not provided by
 #include "http_digest.h"
 #include "http_negotiate.h"
 #include "select.h"
-#include "multi.h"
+#include "multiif.h"
 
 /* And now for the protocols */
 #include "ftp.h"