From 266cc44e498872206847935c8669668187a4808f Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Thu, 14 Nov 2019 18:49:53 +0000 Subject: [PATCH] trying to fix build by reverting port.h git-svn-id: svn://kolibrios.org@7701 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/develop/cmm/port.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/programs/develop/cmm/port.h b/programs/develop/cmm/port.h index c260e724ef..ef8bdd7e2a 100644 --- a/programs/develop/cmm/port.h +++ b/programs/develop/cmm/port.h @@ -90,12 +90,17 @@ bool OemToCharA(char*, char*); bool CharToOemA(char*, char*); int MultiByteToWideChar(unsigned int,unsigned int,char*,int,wchar_t *,int); +#else + +int stricmp(const char*, const char*); //Leency +int strnicmp(const char*, const char*, int); //Leency + #endif char* strupr(char* s); char* strlwr(char* s); -int stricmp(const char*, const char*); -int strnicmp(const char*, const char*, int); +//int stricmp(const char*, const char*); //Leency +//int strnicmp(const char*, const char*, int); //Leency #ifdef _PORT_CPP_