mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
linux debugging
commented out line 27-35 to help with linux debugging
This commit is contained in:
@@ -24,15 +24,15 @@
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
strcasecmp(const char* a, const char* b)
|
||||
{
|
||||
#ifdef NK_WIN
|
||||
return _stricmp(a, b);
|
||||
#endif
|
||||
#ifdef NK_LINUX
|
||||
return strcasecmp(a, b);
|
||||
#endif
|
||||
}
|
||||
// strcasecmp(const char* a, const char* b)
|
||||
// {
|
||||
// #ifdef NK_WIN
|
||||
// return _stricmp(a, b);
|
||||
// #endif
|
||||
// #ifdef NK_LINUX
|
||||
// return strcasecmp(a, b);
|
||||
// #endif
|
||||
// }
|
||||
#undef assert
|
||||
#define assert(x)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user