]> granicus.if.org Git - apache/commitdiff
Replace ERROR constant with TODO_ERROR to flag these for review.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 28 Apr 2000 05:50:17 +0000 (05:50 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 28 Apr 2000 05:50:17 +0000 (05:50 +0000)
  ERROR is a Windows.h constant of 0, or success, and is unrelated
  to the error codes!

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85071 13f79535-47bb-0310-9956-ffa450edef68

os/win32/os.h

index 9f4b2e59277ce44cfc46ca1d043ffa1a334b2228..806b53b3af9b67730dcd7d3bed4ece08c2c05b01 100644 (file)
@@ -131,6 +131,10 @@ every configuration function as __stdcall.
 
 #define MODULE_VAR_EXPORT   __declspec(dllexport)
 
+
+#define HAVE_STRCASECMP
+#define HAVE_STRNCASECMP
+
 #define strcasecmp(s1, s2) stricmp(s1, s2)
 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)
 #define lstat(x, y) stat(x, y)