Simplify for FreeBSD for now, bypassing the multibyte char variables

that Solaris has. We may need to revisit this issue later.
This commit is contained in:
John Birrell 2008-04-26 04:11:16 +00:00
parent 76429c36b0
commit 18db5bcf28
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=178549

View File

@ -32,15 +32,28 @@
/*LINTLIBRARY*/
#if defined(sun)
#pragma weak gmatch = _gmatch
#endif
#if defined(sun)
#include "gen_synonyms.h"
#endif
#include <sys/types.h>
#include <libgen.h>
#include <stdlib.h>
#include <limits.h>
#if defined(sun)
#include <widec.h>
#include "_range.h"
#else
/* DOODAD */ static int multibyte = 0;
#define WCHAR_CSMASK 0x30000000
#define valid_range(c1, c2) \
(((c1) & WCHAR_CSMASK) == ((c2) & WCHAR_CSMASK) && \
((c1) > 0xff || !iscntrl((int)c1)) && ((c2) > 0xff || \
!iscntrl((int)c2)))
#endif
#define Popwchar(p, c) \
n = mbtowc(&cl, p, MB_LEN_MAX); \