Removed compiler warnings.

This commit is contained in:
oliverschmidt 2007-11-18 02:16:57 +00:00
parent 536f20efba
commit 86a745f923

View File

@ -18,8 +18,10 @@
#ifdef __CYGWIN__ #ifdef __CYGWIN__
int strcasecmp(const char*, const char*); int strcasecmp(const char*, const char*);
char* strdup(const char*);
#else #else
#define strcasecmp _stricmp #define strcasecmp _stricmp
#define strdup _strdup
#endif #endif