(svn r5760) - Codechange: Use a define for case-string comparison in OS/2 instead of function.

This commit is contained in:
Darkvater 2006-08-04 23:27:36 +00:00
parent 2ad99348bf
commit 9e69df03a7
2 changed files with 1 additions and 5 deletions

5
os2.c
View File

@ -25,11 +25,6 @@
#include <i86.h>
static inline int strcasecmp(const char* s1, const char* s2)
{
return stricmp(s1, s2);
}
static char *_fios_path;
static char *_fios_save_path;
static char *_fios_scn_path;

View File

@ -22,6 +22,7 @@
#if defined(__OS2__)
# include <types.h>
# define strcasecmp stricmp
#endif
#ifdef __BEOS__