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
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* If atexit() may dynamically allocate space for cleanup functions. */
|
|
|
|
#undef _ATEXIT_DYNAMIC_ALLOC
|
2019-10-08 03:29:33 +08:00
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* EL/IX level */
|
|
|
|
#undef _ELIX_LEVEL
|
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
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Define if fseek functions support seek optimization. */
|
|
|
|
#undef _FSEEK_OPTIMIZATION
|
2002-09-12 02:36:55 +08:00
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Define if ivo supported in streamio. */
|
|
|
|
#undef _FVWRITE_IN_STREAMIO
|
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
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Define if compiler supports -fno-tree-loop-distribute-patterns. */
|
|
|
|
#undef _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL
|
2004-06-26 04:33:28 +08:00
|
|
|
|
2006-01-21 06:42:46 +08:00
|
|
|
/* Define if the linker supports .preinit_array/.init_array/.fini_array
|
2022-01-13 12:05:16 +08:00
|
|
|
sections. */
|
2022-01-18 11:20:20 +08:00
|
|
|
#undef _HAVE_INITFINI_ARRAY
|
2006-01-21 06:42:46 +08:00
|
|
|
|
2022-01-13 12:05:16 +08:00
|
|
|
/* Define if the platform supports long double type. */
|
|
|
|
#undef _HAVE_LONG_DOUBLE
|
2009-05-16 00:15:57 +08:00
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* ICONV enabled. */
|
|
|
|
#undef _ICONV_ENABLED
|
2016-10-26 00:38:19 +08:00
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Enable ICONV external CCS files loading capabilities. */
|
|
|
|
#undef _ICONV_ENABLE_EXTERNAL_CCS
|
2017-09-07 14:24:22 +08:00
|
|
|
|
2022-01-18 11:00:26 +08:00
|
|
|
/* Support big5 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_BIG5
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp775 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_CP775
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp850 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_CP850
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp852 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_CP852
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp855 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_CP855
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp866 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_CP866
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support euc_jp input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_EUC_JP
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support euc_kr input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_EUC_KR
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support euc_tw input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_EUC_TW
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_1 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_1
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_10 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_10
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_11 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_11
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_13 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_13
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_14 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_14
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_15 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_15
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_2 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_2
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_3 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_3
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_4 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_4
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_5 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_5
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_6 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_6
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_7 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_7
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_8 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_8
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_9 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_8859_9
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_ir_111 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_ISO_IR_111
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_r input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_R
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_ru input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_RU
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_u input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_U
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_uni input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_KOI8_UNI
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2be input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2BE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2le input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2LE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2_internal input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_2_INTERNAL
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4be input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4BE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4le input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4LE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4_internal input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UCS_4_INTERNAL
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support us_ascii input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_US_ASCII
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_16 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_16
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_16be input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_16BE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_16le input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_16LE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_8 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_UTF_8
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1250 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1250
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1251 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1251
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1252 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1252
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1253 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1253
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1254 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1254
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1255 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1255
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1256 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1256
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1257 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1257
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1258 input encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_FROM_ENCODING_WIN_1258
|
2021-12-01 05:11:32 +08:00
|
|
|
|
2022-01-18 11:00:26 +08:00
|
|
|
/* Support big5 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_BIG5
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp775 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_CP775
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp850 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_CP850
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp852 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_CP852
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp855 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_CP855
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support cp866 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_CP866
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support euc_jp output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_EUC_JP
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support euc_kr output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_EUC_KR
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support euc_tw output encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_EUC_TW
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_1 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_1
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_10 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_10
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_11 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_11
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_13 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_13
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_14 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_14
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_15 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_15
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_2 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_2
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_3 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_3
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_4 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_4
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_5 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_5
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_6 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_6
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_7 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_7
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_8 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_8
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_8859_9 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_8859_9
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support iso_ir_111 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_ISO_IR_111
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_r output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_R
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_ru output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_RU
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_u output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_U
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support koi8_uni output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_KOI8_UNI
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2be output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2BE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2le output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2LE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_2_internal output encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_2_INTERNAL
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4be output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4BE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4le output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4LE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support ucs_4_internal output encoding. */
|
2022-01-18 09:10:38 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UCS_4_INTERNAL
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support us_ascii output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_US_ASCII
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_16 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UTF_16
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_16be output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UTF_16BE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_16le output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UTF_16LE
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support utf_8 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_UTF_8
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1250 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1250
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1251 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1251
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1252 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1252
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1253 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1253
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1254 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1254
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1255 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1255
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1256 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1256
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1257 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1257
|
2022-01-18 11:00:26 +08:00
|
|
|
|
|
|
|
/* Support win_1258 output encoding. */
|
2004-06-26 04:33:28 +08:00
|
|
|
#undef _ICONV_TO_ENCODING_WIN_1258
|
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Define if the platform long double type is equal to double. */
|
|
|
|
#undef _LDBL_EQ_DBL
|
2004-01-30 01:12:36 +08:00
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Define if lite version of exit supported. */
|
|
|
|
#undef _LITE_EXIT
|
|
|
|
|
|
|
|
/* Multibyte supported. */
|
|
|
|
#undef _MB_CAPABLE
|
|
|
|
|
|
|
|
/* Multibyte max length. */
|
|
|
|
#undef _MB_LEN_MAX
|
|
|
|
|
|
|
|
/* Define if small footprint nano-formatted-IO implementation used. */
|
|
|
|
#undef _NANO_FORMATTED_IO
|
|
|
|
|
2022-01-18 10:25:17 +08:00
|
|
|
/* nano version of malloc is used. */
|
|
|
|
#undef _NANO_MALLOC
|
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Verify _REENT_CHECK macros allocate memory successfully. */
|
|
|
|
#undef _REENT_CHECK_VERIFY
|
|
|
|
|
|
|
|
/* Define if declare atexit data as global. */
|
|
|
|
#undef _REENT_GLOBAL_ATEXIT
|
|
|
|
|
|
|
|
/* Define if using retargetable functions for default lock routines. */
|
|
|
|
#undef _RETARGETABLE_LOCKING
|
|
|
|
|
|
|
|
/* Define if unbuffered stream file optimization is supported. */
|
|
|
|
#undef _UNBUF_STREAM_OPT
|
|
|
|
|
|
|
|
/* Enable C99 formats support (e.g. %a, %zu, ...) in IO functions like
|
|
|
|
printf/scanf. */
|
|
|
|
#undef _WANT_IO_C99_FORMATS
|
2008-10-17 03:38:15 +08:00
|
|
|
|
2022-01-18 09:10:38 +08:00
|
|
|
/* Define to enable long double type support in IO functions like
|
|
|
|
printf/scanf. */
|
|
|
|
#undef _WANT_IO_LONG_DOUBLE
|
|
|
|
|
|
|
|
/* Define to enable long long type support in IO functions like printf/scanf.
|
|
|
|
*/
|
|
|
|
#undef _WANT_IO_LONG_LONG
|
|
|
|
|
|
|
|
/* Positional argument support in printf functions enabled. */
|
|
|
|
#undef _WANT_IO_POS_ARGS
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
|
|
|
/* Optional reentrant struct support. Used mostly on platforms with very
|
|
|
|
restricted storage. */
|
|
|
|
#undef _WANT_REENT_SMALL
|
|
|
|
|
|
|
|
/* Register application finalization function using atexit. */
|
|
|
|
#undef _WANT_REGISTER_FINI
|
|
|
|
|
|
|
|
/* Define if using gdtoa rather than legacy ldtoa. */
|
|
|
|
#undef _WANT_USE_GDTOA
|
|
|
|
|
|
|
|
/* Define to use type long for time_t. */
|
|
|
|
#undef _WANT_USE_LONG_TIME_T
|
|
|
|
|
|
|
|
/* Define if wide char orientation is supported. */
|
|
|
|
#undef _WIDE_ORIENT
|
|
|
|
|
|
|
|
#endif /* !__NEWLIB_H__ */
|