summaryrefslogtreecommitdiff
path: root/wince/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'wince/string.c')
-rw-r--r--wince/string.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wince/string.c b/wince/string.c
index eb95d94d47..74a4afe909 100644
--- a/wince/string.c
+++ b/wince/string.c
@@ -23,8 +23,8 @@ char* strerror(int errno)
return rb_w32_strerror(errno);
}
-/* _strnicmp already exists in stdlib.h? */
-int _strnicmp( const char *s1, const char *s2, size_t count )
+/* strnicmp already exists in stdlib.h? */
+int strnicmp( const char *s1, const char *s2, size_t count )
{
wchar_t *w1, *w2;
int n;
@@ -53,7 +53,7 @@ char *strrchr( const char *p, int c )
return pp==p ? NULL : pp;
}
-int _stricmp( const char *s1, const char *s2 )
+int stricmp( const char *s1, const char *s2 )
{
wchar_t *w1, *w2;
int n;