diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-05-22 14:12:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-05-22 14:12:12 +0000 |
commit | 96dde76b99897352aa3d0877a0b621a9e605733e (patch) | |
tree | 4fdab47b4c9769405aa799bf65971c31abf2de6b /lib/setup.h | |
parent | fb9d1ff00f76836dd66725de869656c5fa53b071 (diff) | |
download | curl-96dde76b99897352aa3d0877a0b621a9e605733e.tar.gz |
moved here from the newlib branch
Diffstat (limited to 'lib/setup.h')
-rw-r--r-- | lib/setup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/setup.h b/lib/setup.h index 083e89093..c800fa8d3 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -57,8 +57,6 @@ #endif #endif - - #ifndef OS #ifdef WIN32 #define OS "win32" @@ -99,6 +97,7 @@ defined(HAVE_LIBSSL) && defined(HAVE_LIBCRYPTO) #endif #endif +#if 0 #ifdef HAVE_STRCASECMP #define strnequal(x,y,z) !(strncasecmp)(x,y,z) #define strequal(x,y) !(strcasecmp)(x,y) @@ -107,6 +106,7 @@ defined(HAVE_LIBSSL) && defined(HAVE_LIBCRYPTO) #define strnequal(x,y,z) !strnicmp(x,y,z) #define strequal(x,y) !stricmp(x,y) #endif +#endif /* Below we define four functions. They should 1. close a socket |