diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-25 13:42:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-25 13:42:23 +0000 |
commit | 762dcf0780b0100f50fad21a5d3e5e5613def267 (patch) | |
tree | c32d0c8433d43258594e1af85396aaa03fb55b48 /lib | |
parent | 75ee9b5333be05c86063143a9095c4d6120c3513 (diff) |
include the strerror.h file without curl_ prefix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connect.c | 2 | ||||
-rw-r--r-- | lib/ftp.c | 2 | ||||
-rw-r--r-- | lib/strerror.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/connect.c b/lib/connect.c index 28783445e..eb003c28f 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -87,7 +87,7 @@ #include "urldata.h" #include "sendf.h" #include "if2ip.h" -#include "curl_strerror.h" +#include "strerror.h" #include "connect.h" /* The last #include file should be: */ @@ -91,7 +91,7 @@ #include "strequal.h" #include "ssluse.h" #include "connect.h" -#include "curl_strerror.h" +#include "strerror.h" #if defined(HAVE_INET_NTOA_R) && !defined(HAVE_INET_NTOA_R_DECL) #include "inet_ntoa_r.h" diff --git a/lib/strerror.c b/lib/strerror.c index 570759603..32ece136e 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -27,7 +27,7 @@ #include <string.h> #include <errno.h> -#include "curl_strerror.h" +#include "strerror.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> |