mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
Make wchar_t a char instead of a short.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4184 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
cc12a5a838
commit
65ca052303
@ -6,8 +6,8 @@
|
|||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2003 Ullrich von Bassewitz */
|
/* (C) 1998-2009, Ullrich von Bassewitz */
|
||||||
/* Römerstrasse 52 */
|
/* Roemerstrasse 52 */
|
||||||
/* D-70794 Filderstadt */
|
/* D-70794 Filderstadt */
|
||||||
/* EMail: uz@cc65.org */
|
/* EMail: uz@cc65.org */
|
||||||
/* */
|
/* */
|
||||||
@ -45,7 +45,7 @@ typedef int ptrdiff_t;
|
|||||||
#endif
|
#endif
|
||||||
#ifndef _HAVE_wchar_t
|
#ifndef _HAVE_wchar_t
|
||||||
#define _HAVE_wchar_t
|
#define _HAVE_wchar_t
|
||||||
typedef unsigned short wchar_t;
|
typedef char wchar_t;
|
||||||
#endif
|
#endif
|
||||||
#ifndef _HAVE_size_t
|
#ifndef _HAVE_size_t
|
||||||
#define _HAVE_size_t
|
#define _HAVE_size_t
|
||||||
|
Loading…
Reference in New Issue
Block a user