2009-08-19 05:48:05 +08:00
|
|
|
/* newlib.hin. Manually edited from the output of autoheader to
|
|
|
|
remove all PACKAGE_ macros which will collide with any user
|
|
|
|
package using newlib header files and having its own package name,
|
|
|
|
version, etc... */
|
2002-08-28 04:27:35 +08:00
|
|
|
#ifndef __NEWLIB_H__
|
|
|
|
|
|
|
|
#define __NEWLIB_H__ 1
|
|
|
|
|
|
|
|
/* EL/IX level */
|
|
|
|
#undef _ELIX_LEVEL
|
|
|
|
|
|
|
|
/* Newlib version */
|
Define the newlib version macros in one place: _newlib_version.h.
Currently, the newlib version information needs to be updated in two places:
- newlib/acinclude.m4
- newlib/libc/include/sys/features.h
The goal of this patch is to:
- supply a single location for defining the newlib version
information: newlib/acinclude.m4
- define __NEWLIB__, __NEWLIB_MINOR__ and __NEWLIB_PATCHLEVEL__
This is in line with what gcc does for its version macros. See:
https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
This patch moves the definition of the _NEWLIB_VERSION, __NEWLIB__
and __NEWLIB_MINOR__ macros from newlib/libc/include/sys/features.h,
to the newly generated newlib/_newlib_version.h file. Additionally,
the __NEWLIB_PATCHLEVEL__ macro was created, for completeness.
In order to stay backwards compatible, newlib/_newlib_version.h gets
included by newlib/newlib.h and newlib/libc/include/sys/features.h.
Note: This patch does _not_ include the modifications to the following
files, as these should all be generated any way.
*Makefile.in,
*aclocal.m4,
*configure
stamp-* files
Signed-off-by: Pieter du Preez <pdupreez@gmail.com>
2016-02-14 18:12:06 +08:00
|
|
|
#include <_newlib_version.h>
|
2002-08-28 04:27:35 +08:00
|
|
|
|
2007-05-12 04:09:00 +08:00
|
|
|
/* C99 formats support (such as %a, %zu, ...) in IO functions like
|
|
|
|
* printf/scanf enabled */
|
|
|
|
#undef _WANT_IO_C99_FORMATS
|
|
|
|
|
2004-05-26 08:19:14 +08:00
|
|
|
/* long long type support in IO functions like printf/scanf enabled */
|
|
|
|
#undef _WANT_IO_LONG_LONG
|
|
|
|
|
2010-06-09 02:44:14 +08:00
|
|
|
/* Register application finalization function using atexit. */
|
|
|
|
#undef _WANT_REGISTER_FINI
|
|
|
|
|
2004-05-26 08:19:14 +08:00
|
|
|
/* long double type support in IO functions like printf/scanf enabled */
|
|
|
|
#undef _WANT_IO_LONG_DOUBLE
|
|
|
|
|
|
|
|
/* Positional argument support in printf functions enabled. */
|
|
|
|
#undef _WANT_IO_POS_ARGS
|
|
|
|
|
2007-03-16 05:32:13 +08:00
|
|
|
/* Optional reentrant struct support. Used mostly on platforms with
|
|
|
|
very restricted storage. */
|
|
|
|
#undef _WANT_REENT_SMALL
|
|
|
|
|
2004-04-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* configure.in: Define _MB_CAPABLE if mb supported.
* configure: Regenerated.
* configure.host: Remove manual setting of MB_CAPABLE compiler
flag.
* newlib.hin: Add _MB_CAPABLE flag.
* libc/ctype/iswalpha.c, libc/ctype/iswblank.c: Include <newlib.h>
and check for _MB_CAPABLE flag instead of MB_CAPABLE.
* libc/ctype/iswcntrl.c, libc/ctype/iswprint.c: Ditto.
* libc/ctype/iswpunct.c, libc/ctype/iswspace.c: Ditto.
* libc/ctype/jp2uc.c: Ditto.
* libc/ctype/towlower.c, libc/ctype/towupper.c: Ditto.
* libc/locale/locale.c: Ditto
* libc/machine/powerpc/vfscanf.c: Ditto
* libc/stdio/vfprintf.c, libc/stdio/vfscanf.c: Ditto
* libc/stdlib/mblen.c: Ditto
* libc/stdlib/mblen_r.c, libc/stdlib/mbrlen.c: Ditto
* libc/stdlib/mbrtowc.c, libc/stdlib/mbsrtowcs.c: Ditto
* libc/stdlib/mbstowcs.c, libc/stdlib/mbtowc.c: Ditto
* libc/stdlib/mbtowc_r.c, libc/stdlib/wcrtomb.c: Ditto
* libc/stdlib/wcsrtombs.c, libc/stdlib/wcstombs.c: Ditto
* libc/stdlib/wctomb.c, libc/sys/linux/intl/dcigettext.c: Ditto
* libc/sys/linux/intl/explodename.c: Ditto
* libc/sys/linux/intl/finddomain.c: Ditto
* libc/sys/linux/intl/l10nflist.c: Ditto
* libc/sys/linux/intl/loadmsgcat.c: Ditto
* libc/sys/linux/intl/localealias.c: Ditto
2004-04-24 05:44:22 +08:00
|
|
|
/* Multibyte supported */
|
|
|
|
#undef _MB_CAPABLE
|
|
|
|
|
2002-09-12 02:36:55 +08:00
|
|
|
/* MB_LEN_MAX */
|
|
|
|
#undef _MB_LEN_MAX
|
|
|
|
|
2004-01-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* acinclude.m4 (--enable-newlib-iconv): New configuration option.
(--enable-newlib-builtin-converters): Ditto.
* configure.in: Add code to set _ICONV_ENABLED flag.
Set _MB_LEN_MAX to 1 if not mb enabled.
* configure: Regenerated.
* aclocal.m4: Ditto.
* Makefile.in: Ditto.
* newlib.hin: Add _ICONV_ENABLED flag.
* libc/Makefile.am: Add support for iconv.
* libc/configure.in: Ditto.
* libc/Makefile.in: Regenerated.
* libc/aclocal.m4: Ditto.
* libc/configure: Ditto.
* libc/libc.texinfo: Add iconv documentation.
* libc/iconv/AUTHORS, libc/iconv/COPYING, libc/iconv/Makefile.am,
libc/iconv/Makefile.in, libc/iconv/README.ORIGINAL,
libc/iconv/README.TODO, libc/iconv/charset.aliases,
libc/iconv/iconv.tex, libc/iconv/ccs/Makefile.am,
libc/iconv/ccs/Makefile.in, libc/iconv/ccs/README.CCS.SOURCES,
libc/iconv/ccs/big5.c, libc/iconv/ccs/cns11643_plane1.c,
libc/iconv/ccs/cns11643_plane14.c, libc/iconv/ccs/cns11643_plane2.c,
libc/iconv/ccs/cp775.c, libc/iconv/ccs/cp850.c,
libc/iconv/ccs/cp852.c, libc/iconv/ccs/cp855.c,
libc/iconv/ccs/cp866.c, libc/iconv/ccs/gb_2312_80.c,
libc/iconv/ccs/iconv_mktbl, libc/iconv/ccs/iso_8859_1.c,
libc/iconv/ccs/iso_8859_15.c, libc/iconv/ccs/iso_8859_2.c,
libc/iconv/ccs/iso_8859_4.c, libc/iconv/ccs/iso_8859_5.c,
libc/iconv/ccs/jis_x0201.c, libc/iconv/ccs/jis_x0208_1983.c,
libc/iconv/ccs/jis_x0212_1990.c, libc/iconv/ccs/koi8_r.c,
libc/iconv/ccs/koi8_u.c, libc/iconv/ccs/ksx1001.c,
libc/iconv/ccs/shift_jis.c, libc/iconv/ccs/us_ascii.c,
libc/iconv/ccs/binary/Makefile.am, libc/iconv/ccs/binary/Makefile.in,
libc/iconv/ccs/binary/big5.cct,
libc/iconv/ccs/binary/cns11643_plane1.cct,
libc/iconv/ccs/binary/cns11643_plane14.cct,
libc/iconv/ccs/binary/cns11643_plane2.cct,
libc/iconv/ccs/binary/cp775.cct, libc/iconv/ccs/binary/cp850.cct,
libc/iconv/ccs/binary/cp852.cct, libc/iconv/ccs/binary/cp855.cct,
libc/iconv/ccs/binary/cp866.cct, libc/iconv/ccs/binary/gb_2312_80.cct,
libc/iconv/ccs/binary/iso_8859_1.cct,
libc/iconv/ccs/binary/iso_8859_15.cct,
libc/iconv/ccs/binary/iso_8859_2.cct,
libc/iconv/ccs/binary/iso_8859_4.cct,
libc/iconv/ccs/binary/iso_8859_5.cct,
libc/iconv/ccs/binary/jis_x0201.cct,
libc/iconv/ccs/binary/jis_x0208_1983.cct,
libc/iconv/ccs/binary/jis_x0212_1990.cct,
libc/iconv/ccs/binary/koi8_r.cct, libc/iconv/ccs/binary/koi8_u.cct,
libc/iconv/ccs/binary/ksx1001.cct,
libc/iconv/ccs/binary/shift_jis.cct,
libc/iconv/ccs/binary/us_ascii.cct,
libc/iconv/ces/Makefile.am, libc/iconv/ces/Makefile.in,
libc/iconv/ces/euc-jp.c, libc/iconv/ces/euc-kr.c,
libc/iconv/ces/euc-tw.c, libc/iconv/ces/gb2312.c,
libc/iconv/ces/iso-10646-ucs-2.c, libc/iconv/ces/iso-10646-ucs-4.c,
libc/iconv/ces/ucs-2-internal.c, libc/iconv/ces/ucs-4-internal.c,
libc/iconv/ces/utf-16.c, libc/iconv/ces/utf-8.c,
libc/iconv/lib/Makefile.am, libc/iconv/lib/Makefile.in,
libc/iconv/lib/aliases.c, libc/iconv/lib/bialiasesi.c,
libc/iconv/lib/biccs.c, libc/iconv/lib/bices.c,
libc/iconv/lib/ccs.c, libc/iconv/lib/ces.c,
libc/iconv/lib/ces_euc.c, libc/iconv/lib/ces_iso2022.c,
libc/iconv/lib/ces_table.c, libc/iconv/lib/converter.c,
libc/iconv/lib/deps.h, libc/iconv/lib/endian.h,
libc/iconv/lib/iconv.c, libc/iconv/lib/loaddata.c,
libc/iconv/lib/local.h, libc/include/iconv.h: New files.
* libc/sys/linux/include/iconv.h: Ditto.
* libc/include/sys/_types.h (_iconv_t): Added.
* doc/aclocal.m4: Regenerated.
* doc/configure: Ditto.
* doc/Makefile.in: Ditto.
* iconvdata/Makefile.in: Ditto.
* iconvdata/aclocal.m4: Ditto.
* iconvdata/configure: Ditto.
* libc/*aclocal.m4: Ditto.
* libc/*Makefile.in: Ditto.
* libc/*configure: Ditto.
* libm/*aclocal.m4: Ditto.
* libm/*Makefile.in: Ditto.
* libm/*configure: Ditto.
2004-01-24 05:37:46 +08:00
|
|
|
/* ICONV enabled */
|
|
|
|
#undef _ICONV_ENABLED
|
|
|
|
|
2004-06-26 04:33:28 +08:00
|
|
|
/* Enable ICONV external CCS files loading capabilities */
|
|
|
|
#undef _ICONV_ENABLE_EXTERNAL_CCS
|
|
|
|
|
2006-01-21 06:42:46 +08:00
|
|
|
/* Define if the linker supports .preinit_array/.init_array/.fini_array
|
|
|
|
* sections. */
|
|
|
|
#undef HAVE_INITFINI_ARRAY
|
|
|
|
|
2006-03-21 08:57:34 +08:00
|
|
|
/* True if atexit() may dynamically allocate space for cleanup
|
|
|
|
functions. */
|
|
|
|
#undef _ATEXIT_DYNAMIC_ALLOC
|
|
|
|
|
2009-05-16 00:15:57 +08:00
|
|
|
/* True if long double supported. */
|
|
|
|
#undef _HAVE_LONG_DOUBLE
|
|
|
|
|
2013-12-11 02:57:30 +08:00
|
|
|
/* Define if compiler supports -fno-tree-loop-distribute-patterns. */
|
|
|
|
#undef _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL
|
|
|
|
|
2009-04-25 06:49:55 +08:00
|
|
|
/* True if long double supported and it is equal to double. */
|
|
|
|
#undef _LDBL_EQ_DBL
|
2013-03-27 17:38:39 +08:00
|
|
|
|
|
|
|
/* Define if ivo supported in streamio. */
|
|
|
|
#undef _FVWRITE_IN_STREAMIO
|
2009-04-25 06:49:55 +08:00
|
|
|
|
2013-04-11 02:47:46 +08:00
|
|
|
/* Define if fseek functions support seek optimization. */
|
|
|
|
#undef _FSEEK_OPTIMIZATION
|
|
|
|
|
2013-04-12 20:05:31 +08:00
|
|
|
/* Define if wide char orientation is supported. */
|
|
|
|
#undef _WIDE_ORIENT
|
|
|
|
|
2013-06-19 23:58:50 +08:00
|
|
|
/* Define if unbuffered stream file optimization is supported. */
|
|
|
|
#undef _UNBUF_STREAM_OPT
|
|
|
|
|
2013-07-03 05:30:57 +08:00
|
|
|
/* Define if lite version of exit supported. */
|
|
|
|
#undef _LITE_EXIT
|
|
|
|
|
2013-10-18 16:43:05 +08:00
|
|
|
/* Define if declare atexit data as global. */
|
|
|
|
#undef _REENT_GLOBAL_ATEXIT
|
|
|
|
|
2017-06-29 13:28:08 +08:00
|
|
|
/* Define to move the stdio stream FILE objects out of struct _reent and make
|
|
|
|
them global. The stdio stream pointers of struct _reent are initialized to
|
|
|
|
point to the global stdio FILE stream objects. */
|
|
|
|
#undef _WANT_REENT_GLOBAL_STDIO_STREAMS
|
|
|
|
|
2014-07-04 Bin Cheng <bin.cheng@arm.com>
* README (--enable-newlib-nano-formatted-io): Describe.
* acconfig.h (_NANO_FORMATTED_IO): Undef.
* newlib.hin (_NANO_FORMATTED_IO): Undef.
* configure.in (--enable-newlib-nano-formatted-io): New option.
* configure: Regenerated.
* libc/configure.in (--enable-newlib-nano-formatted-io): New option.
* libc/configure: Regenerated.
* libc/stdio/Makefile.am (NEWLIB_NANO_FORMATTED_IO): Support new
configuration option.
* libc/stdio/Makefile.in: Regenerated.
* libc/stdio/asnprintf.c (_asniprintf_r, asniprintf): Use
_NANO_FORMATTED_IO to declare alias prototypes.
* libc/stdio/asprintf.c (_asiprintf_r, asiprintf): Ditto.
* libc/stdio/dprintf.c (_diprintf_r, diprintf): Ditto.
* libc/stdio/fprintf.c (_fiprintf_r, fiprintf): Ditto.
* libc/stdio/fscanf.c (fiscanf, _fiscanf_r): Ditto.
* libc/stdio/printf.c (_iprintf_r, iprintf): Ditto.
* libc/stdio/scanf.c (iscanf, _iscanf_r): Ditto.
* libc/stdio/snprintf.c (_sniprintf_r, sniprintf): Ditto.
* libc/stdio/sprintf.c (_siprintf_r, siprintf): Ditto.
* libc/stdio/sscanf.c (siscanf, _siscanf_r): Ditto.
* libc/stdio/vasnprintf.c (_vasniprintf_r, vasniprintf): Ditto.
* libc/stdio/vasprintf.c (vasiprintf, _vasiprintf_r): Ditto.
* libc/stdio/vdprintf.c (_vdiprintf_r, vdiprintf): Ditto.
* libc/stdio/vprintf.c (viprintf, _viprintf_r): Ditto.
* libc/stdio/vscanf.c (viscanf, _viscanf_r): Ditto.
* libc/stdio/vsnprintf.c (vsniprintf, _vsniprintf_r): Ditto.
* libc/stdio/vsprintf.c (vsiprintf, _vsiprintf_r): Ditto.
* libc/stdio/vsscanf.c (vsiscanf, _vsiscanf_r): Ditto.
* libc/stdio/nano-vfprintf.c: New file.
* libc/stdio/nano-vfprintf_float.c: New file.
* libc/stdio/nano-vfprintf_i.c: New file.
* libc/stdio/nano-vfprintf_local.h: New file.
* libc/stdio/nano-vfscanf.c: New file.
* libc/stdio/nano-vfscanf_float.c: New file.
* libc/stdio/nano-vfscanf_i.c: New file.
* libc/stdio/nano-vfscanf_local.h: New file.
2014-07-05 01:21:45 +08:00
|
|
|
/* Define if small footprint nano-formatted-IO implementation used. */
|
|
|
|
#undef _NANO_FORMATTED_IO
|
|
|
|
|
2016-10-26 00:38:19 +08:00
|
|
|
/* Define if using retargetable functions for default lock routines. */
|
|
|
|
#undef _RETARGETABLE_LOCKING
|
|
|
|
|
2017-09-07 14:24:22 +08:00
|
|
|
/* Define to use type long for time_t. */
|
|
|
|
#undef _WANT_USE_LONG_TIME_T
|
|
|
|
|
2004-06-26 04:33:28 +08:00
|
|
|
/*
|
|
|
|
* Iconv encodings enabled ("to" direction)
|
|
|
|
*/
|
|
|
|
#undef _ICONV_TO_ENCODING_BIG5
|
|
|
|
#undef _ICONV_TO_ENCODING_CP775
|
|
|
|
#undef _ICONV_TO_ENCODING_CP850
|
|
|
|
#undef _ICONV_TO_ENCODING_CP852
|
|
|
|
#undef _ICONV_TO_ENCODING_CP855
|
|
|
|
#undef _ICONV_TO_ENCODING_CP866
|
|
|
|
#undef _ICONV_TO_ENCODING_EUC_JP
|
|
|
|
#undef _ICONV_TO_ENCODING_EUC_TW
|
|
|
|
#undef _ICONV_TO_ENCODING_EUC_KR
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_1
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_10
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_11
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_13
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_14
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_15
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_2
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_3
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_4
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_5
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_6
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_7
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_8
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_9
|
|
|
|
#undef _ICONV_TO_ENCODING_ISO_IR_111
|
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_R
|
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_RU
|
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_U
|
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_UNI
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2_INTERNAL
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2BE
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2LE
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4_INTERNAL
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4BE
|
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4LE
|
|
|
|
#undef _ICONV_TO_ENCODING_US_ASCII
|
|
|
|
#undef _ICONV_TO_ENCODING_UTF_16
|
|
|
|
#undef _ICONV_TO_ENCODING_UTF_16BE
|
|
|
|
#undef _ICONV_TO_ENCODING_UTF_16LE
|
|
|
|
#undef _ICONV_TO_ENCODING_UTF_8
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1250
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1251
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1252
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1253
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1254
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1255
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1256
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1257
|
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1258
|
|
|
|
|
2004-01-30 01:12:36 +08:00
|
|
|
/*
|
2004-06-26 04:33:28 +08:00
|
|
|
* Iconv encodings enabled ("from" direction)
|
2004-01-30 01:12:36 +08:00
|
|
|
*/
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_BIG5
|
|
|
|
#undef _ICONV_FROM_ENCODING_CP775
|
|
|
|
#undef _ICONV_FROM_ENCODING_CP850
|
|
|
|
#undef _ICONV_FROM_ENCODING_CP852
|
|
|
|
#undef _ICONV_FROM_ENCODING_CP855
|
|
|
|
#undef _ICONV_FROM_ENCODING_CP866
|
|
|
|
#undef _ICONV_FROM_ENCODING_EUC_JP
|
|
|
|
#undef _ICONV_FROM_ENCODING_EUC_TW
|
|
|
|
#undef _ICONV_FROM_ENCODING_EUC_KR
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_1
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_10
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_11
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_13
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_14
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_15
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_2
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_3
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_4
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_5
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_6
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_7
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_8
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_9
|
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_IR_111
|
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_R
|
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_RU
|
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_U
|
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_UNI
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2_INTERNAL
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2BE
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2LE
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4_INTERNAL
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4BE
|
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4LE
|
|
|
|
#undef _ICONV_FROM_ENCODING_US_ASCII
|
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_16
|
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_16BE
|
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_16LE
|
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_8
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1250
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1251
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1252
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1253
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1254
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1255
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1256
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1257
|
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1258
|
2004-01-30 01:12:36 +08:00
|
|
|
|
2002-08-28 04:27:35 +08:00
|
|
|
#endif /* !__NEWLIB_H__ */
|
2008-10-17 03:38:15 +08:00
|
|
|
|