From c8bcea18defdb374c501ac59ab486c47f0a164cb Mon Sep 17 00:00:00 2001 From: meep-eep Date: Mon, 18 Apr 2005 14:28:08 +0000 Subject: [PATCH] define strcasecmp to stricmp if the latter is available. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1647 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/port.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sc2/src/port.h b/sc2/src/port.h index f0a9ad3da..de88bb862 100644 --- a/sc2/src/port.h +++ b/sc2/src/port.h @@ -11,6 +11,8 @@ #ifndef HAVE_STRICMP # define stricmp strcasecmp +#else +# define strcasecmp stricmp #endif #ifndef HAVE_STRUPR