blob: aeed0a809c7da6c016a6ac78432540ff6b3a8273 [file] [log] [blame]
#include <string.h>
int
strcasecmp (const char *sz1,const char *sz2)
{
return _stricmp (sz1,sz2);
}