Protect strcasecmp from macro w/ args expansion.

This commit is contained in:
Kurt Zeilenga 1999-05-21 03:10:52 +00:00
parent b1d315c51f
commit 5a5fc0872b

View 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 )