summaryrefslogtreecommitdiff
path: root/emulators/wine/patches/patch-ah
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/wine/patches/patch-ah')
-rw-r--r--emulators/wine/patches/patch-ah18
1 files changed, 18 insertions, 0 deletions
diff --git a/emulators/wine/patches/patch-ah b/emulators/wine/patches/patch-ah
new file mode 100644
index 00000000000..70a7adb8ec6
--- /dev/null
+++ b/emulators/wine/patches/patch-ah
@@ -0,0 +1,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;