1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +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:
uz 2009-09-18 07:38:00 +00:00
parent cc12a5a838
commit 65ca052303

View File

@ -1,15 +1,15 @@
/*****************************************************************************/
/* */
/* stddef.h */
/* stddef.h */
/* */
/* Common definitions */
/* Common definitions */
/* */
/* */
/* */
/* (C) 1998-2003 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* (C) 1998-2009, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -45,7 +45,7 @@ typedef int ptrdiff_t;
#endif
#ifndef _HAVE_wchar_t
#define _HAVE_wchar_t
typedef unsigned short wchar_t;
typedef char wchar_t;
#endif
#ifndef _HAVE_size_t
#define _HAVE_size_t