From mint-bounce@lists.fishpool.fi Tue Feb 26 08:13:09 2008 X-Virus-Scanned: amavisd-new at demon.co.uk Subject: [MiNT] Add wchar.h to MiNTlib From: Alan Hourihane To: mint Content-Type: multipart/mixed; boundary="=-TZt8px0Mqfn8t3O5Jmpp" Date: Tue, 26 Feb 2008 13:09:14 +0000 Message-Id: <1204031355.10574.23.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.12.2 X-ecartis-version: Ecartis v1.0.0 Sender: mint-bounce@lists.fishpool.fi Errors-to: mint-bounce@lists.fishpool.fi X-original-sender: alanh@fairlite.demon.co.uk Precedence: bulk List-help: List-unsubscribe: List-Id: X-List-ID: List-subscribe: List-owner: List-post: --=-TZt8px0Mqfn8t3O5Jmpp Content-Type: text/plain Content-Transfer-Encoding: 7bit Although we don't have wide character support in MiNTlib it makes compiling packages a whole lot simpler if we include the attached minimalist version. Alan. --=-TZt8px0Mqfn8t3O5Jmpp Content-Disposition: attachment; filename=mintlib-wchar.patch Content-Type: text/x-patch; name=mintlib-wchar.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit Index: include/MISCFILES =================================================================== RCS file: /mint/mintlib/include/MISCFILES,v retrieving revision 1.12 diff -u -r1.12 MISCFILES --- include/MISCFILES 14 Mar 2002 20:44:50 -0000 1.12 +++ include/MISCFILES 26 Feb 2008 13:06:12 -0000 @@ -92,4 +93,5 @@ values.h \ vt52.h \ wait.h \ + wchar.h \ wordexp.h --- /dev/null 2008-02-26 09:02:35.869001306 +0000 +++ include/wchar.h 2008-01-29 21:34:08.273125659 +0000 @@ -0,0 +1,11 @@ +#ifndef _WCHAR_H +#define _WCHAR_H + +/* Get size_t, wchar_t, wint_t and NULL from . */ +#define __need_size_t +#define __need_wchar_t +#define __need_NULL +#define __need_wint_t +#include + +#endif /* _WCHAR_H */ --=-TZt8px0Mqfn8t3O5Jmpp--