summaryrefslogtreecommitdiff
path: root/emulators/wine/patches/patch-ah
blob: 70a7adb8ec6330e944fabfdc379b2fec1912fd11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- misc/lstr.c.orig	Thu Jun 18 00:22:09 1998
+++ misc/lstr.c	Thu Jun 18 00:27:01 1998
@@ -43,13 +43,13 @@
 /* FIXME: should probably get rid of wctype.h altogether */
 #include "casemap.h"
 
-WCHAR _towupper(WCHAR code)
+WCHAR towupper(WCHAR code)
 {
     const WCHAR * ptr = uprtable[HIBYTE(code)];
     return ptr ? ptr[LOBYTE(code)] : code;
 }
 
-WCHAR _towlower(WCHAR code)
+WCHAR towlower(WCHAR code)
 {
     const WCHAR * ptr = lwrtable[HIBYTE(code)];
     return ptr ? ptr[LOBYTE(code)] : code;