]> git.sur5r.net Git - openldap/commitdiff
Protect strcasecmp from macro w/ args expansion.
authorKurt Zeilenga <kurt@openldap.org>
Fri, 21 May 1999 03:10:52 +0000 (03:10 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 21 May 1999 03:10:52 +0000 (03:10 +0000)
include/ac/string.h

index 2e8472d37f9fe99cadc6d5446357a9fb10addef4..3a17c7c4d87ab526edd1ec6d9d21041d820387da 100644 (file)
@@ -65,7 +65,8 @@ extern char *ldap_pvt_strdup( const char * s );
  * some systems fail to declare strcasecmp() and strncasecmp()
  * we need them declared so we can obtain pointers to them
  */
-extern int strcasecmp(), strncasecmp();
+extern int (strcasecmp)();
+extern int (strncasecmp)();
 
 #ifndef SAFEMEMCPY
 #      if defined( HAVE_MEMMOVE )