]> git.sur5r.net Git - openldap/blobdiff - include/ac/ctype.h
update Win32 build environment to support back-sql
[openldap] / include / ac / ctype.h
index b5638fe97d1eb315d49407283fa7396f0615e285..cfdcd924d79bde724c0da5be3fa87943ceea0d9c 100644 (file)
@@ -1,4 +1,5 @@
 /* Generic ctype.h */
+/* $OpenLDAP$ */
 /*
  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
  * All rights reserved.
@@ -14,6 +15,9 @@
 
 #include <ctype.h>
 
+#undef TOUPPER
+#undef TOLOWER
+
 #ifdef C_UPPER_LOWER
 # define TOUPPER(c)    (islower(c) ? toupper(c) : (c))
 # define TOLOWER(c)    (isupper(c) ? tolower(c) : (c))