2019-01-01 00:11:28 +00:00
|
|
|
/* Copyright (C) 1997-2019 Free Software Foundation, Inc.
|
1999-05-19 15:35:26 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1999-05-19 15:35:26 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
/*
|
1999-10-31 23:32:56 +00:00
|
|
|
* ISO C99: 7.18 Integer types <stdint.h>
|
1999-05-19 15:35:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STDINT_H
|
|
|
|
#define _STDINT_H 1
|
|
|
|
|
2016-09-21 17:06:36 +00:00
|
|
|
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
|
|
|
|
#include <bits/libc-header-start.h>
|
2016-12-30 13:41:40 +00:00
|
|
|
#include <bits/types.h>
|
2000-09-01 06:39:10 +00:00
|
|
|
#include <bits/wchar.h>
|
1999-05-19 15:35:26 +00:00
|
|
|
#include <bits/wordsize.h>
|
|
|
|
|
|
|
|
/* Exact integral types. */
|
|
|
|
|
|
|
|
/* Signed. */
|
Fix network headers stdint.h namespace (bug 21455).
conform/ namespace tests of arpa/inet.h, netdb.h and netinet/in.h fail
for UNIX98 and XPG42 because of inclusion of stdint.h, which defines
macros not permitted in those headers for those standards. UNIX98
allows them to include inttypes.h, but (predating C99) has restricted
inttypes.h contents (not yet tested in the conform/ tests) not
including those macros; XPG4.2 has no such permission and no
inttypes.h / stdint.h at all.
This patch rearranges the headers to avoid this issue. intN_t
definitions move to bits/stdint-intn.h, and uintN_t definitions to
bits/stdint-uintn.h. (These are not bits/types/ headers because they
each define four types. They are separate rather than just a single
header because sys/types.h defines intN_t but u_intN_t rather than
uintN_t - and while sys/types.h could define uintN_t because of the
POSIX reservation of *_t, existing practice there is largely to
condition types on appropriate feature test macros, and indeed there
is at least one open bug report (14553) about a type that's not
so-conditioned, so maybe types there should actually have conditions
added where appropriate.) The affected network headers are then made
to include bits/stdint-uintn.h instead of stdint.h. This allows six
XFAILs to be removed.
This doesn't do anything about inttypes.h defining more than it should
for UNIX98, but we don't have conformtest expectations for that case
at present (and my inclination is that a fix for that should be as
local as possible - affecting only inttypes.h, not stdint.h, only for
the case of __USE_UNIX98 && !__USE_ISOC99).
Tested for x86_64.
[BZ #21455]
* bits/stdint-intn.h: New file.
* bits/stdint-uintn.h: Likewise.
* stdlib/Makefile (headers): Add bits/stdint-intn.h and
bits/stdint-uintn.h.
* inet/netinet/in.h: Include <bits/stdint-uintn.h> instead of
<stdint.h>.
* posix/sys/types.h: Include <bits/stdint-intn.h>.
(__int8_t_defined): Do not define here.
(int8_t): Likewise.
(int16_t): Likewise.
(int32_t): Likewise.
(int64_t): Likewise.
[__GNUC_PREREQ (2, 7)] (__intN_t): Likewise.
* resolv/netdb.h: Include <bits/stdint-uintn.h> instead of
<stdint.h>.
* include/netdb.h [_ISOMAC]: Do not include <stdint.h>.
* sysdeps/generic/stdint.h: Include <bits/stdint-intn.h> and
<bits/stdint-uintn.h>.
(int8_t): Do not define here.
(int16_t): Likewise.
(int32_t): Likewise.
(int64_t): Likewise.
(uint8_t): Likewise.
(uint16_t): Likewise.
(uint32_t): Likewise.
(uint64_t): Likewise.
* conform/Makefile (test-xfail-XPG42/arpa/inet.h/conform): Remove
variable.
(test-xfail-XPG42/netdb.h/conform): Likewise.
(test-xfail-XPG42/netinet/in.h/conform): Likewise.
(test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
(test-xfail-UNIX98/netdb.h/conform): Likewise.
(test-xfail-UNIX98/netinet/in.h/conform): Likewise.
2017-05-04 20:36:42 +00:00
|
|
|
#include <bits/stdint-intn.h>
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
/* Unsigned. */
|
Fix network headers stdint.h namespace (bug 21455).
conform/ namespace tests of arpa/inet.h, netdb.h and netinet/in.h fail
for UNIX98 and XPG42 because of inclusion of stdint.h, which defines
macros not permitted in those headers for those standards. UNIX98
allows them to include inttypes.h, but (predating C99) has restricted
inttypes.h contents (not yet tested in the conform/ tests) not
including those macros; XPG4.2 has no such permission and no
inttypes.h / stdint.h at all.
This patch rearranges the headers to avoid this issue. intN_t
definitions move to bits/stdint-intn.h, and uintN_t definitions to
bits/stdint-uintn.h. (These are not bits/types/ headers because they
each define four types. They are separate rather than just a single
header because sys/types.h defines intN_t but u_intN_t rather than
uintN_t - and while sys/types.h could define uintN_t because of the
POSIX reservation of *_t, existing practice there is largely to
condition types on appropriate feature test macros, and indeed there
is at least one open bug report (14553) about a type that's not
so-conditioned, so maybe types there should actually have conditions
added where appropriate.) The affected network headers are then made
to include bits/stdint-uintn.h instead of stdint.h. This allows six
XFAILs to be removed.
This doesn't do anything about inttypes.h defining more than it should
for UNIX98, but we don't have conformtest expectations for that case
at present (and my inclination is that a fix for that should be as
local as possible - affecting only inttypes.h, not stdint.h, only for
the case of __USE_UNIX98 && !__USE_ISOC99).
Tested for x86_64.
[BZ #21455]
* bits/stdint-intn.h: New file.
* bits/stdint-uintn.h: Likewise.
* stdlib/Makefile (headers): Add bits/stdint-intn.h and
bits/stdint-uintn.h.
* inet/netinet/in.h: Include <bits/stdint-uintn.h> instead of
<stdint.h>.
* posix/sys/types.h: Include <bits/stdint-intn.h>.
(__int8_t_defined): Do not define here.
(int8_t): Likewise.
(int16_t): Likewise.
(int32_t): Likewise.
(int64_t): Likewise.
[__GNUC_PREREQ (2, 7)] (__intN_t): Likewise.
* resolv/netdb.h: Include <bits/stdint-uintn.h> instead of
<stdint.h>.
* include/netdb.h [_ISOMAC]: Do not include <stdint.h>.
* sysdeps/generic/stdint.h: Include <bits/stdint-intn.h> and
<bits/stdint-uintn.h>.
(int8_t): Do not define here.
(int16_t): Likewise.
(int32_t): Likewise.
(int64_t): Likewise.
(uint8_t): Likewise.
(uint16_t): Likewise.
(uint32_t): Likewise.
(uint64_t): Likewise.
* conform/Makefile (test-xfail-XPG42/arpa/inet.h/conform): Remove
variable.
(test-xfail-XPG42/netdb.h/conform): Likewise.
(test-xfail-XPG42/netinet/in.h/conform): Likewise.
(test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
(test-xfail-UNIX98/netdb.h/conform): Likewise.
(test-xfail-UNIX98/netinet/in.h/conform): Likewise.
2017-05-04 20:36:42 +00:00
|
|
|
#include <bits/stdint-uintn.h>
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Small types. */
|
|
|
|
|
|
|
|
/* Signed. */
|
2018-02-07 20:33:55 +00:00
|
|
|
typedef __int_least8_t int_least8_t;
|
|
|
|
typedef __int_least16_t int_least16_t;
|
|
|
|
typedef __int_least32_t int_least32_t;
|
|
|
|
typedef __int_least64_t int_least64_t;
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
/* Unsigned. */
|
2018-02-07 20:33:55 +00:00
|
|
|
typedef __uint_least8_t uint_least8_t;
|
|
|
|
typedef __uint_least16_t uint_least16_t;
|
|
|
|
typedef __uint_least32_t uint_least32_t;
|
|
|
|
typedef __uint_least64_t uint_least64_t;
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Fast types. */
|
|
|
|
|
|
|
|
/* Signed. */
|
|
|
|
typedef signed char int_fast8_t;
|
|
|
|
#if __WORDSIZE == 64
|
|
|
|
typedef long int int_fast16_t;
|
|
|
|
typedef long int int_fast32_t;
|
|
|
|
typedef long int int_fast64_t;
|
|
|
|
#else
|
|
|
|
typedef int int_fast16_t;
|
|
|
|
typedef int int_fast32_t;
|
|
|
|
__extension__
|
|
|
|
typedef long long int int_fast64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Unsigned. */
|
|
|
|
typedef unsigned char uint_fast8_t;
|
|
|
|
#if __WORDSIZE == 64
|
|
|
|
typedef unsigned long int uint_fast16_t;
|
|
|
|
typedef unsigned long int uint_fast32_t;
|
|
|
|
typedef unsigned long int uint_fast64_t;
|
|
|
|
#else
|
|
|
|
typedef unsigned int uint_fast16_t;
|
|
|
|
typedef unsigned int uint_fast32_t;
|
|
|
|
__extension__
|
|
|
|
typedef unsigned long long int uint_fast64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Types for `void *' pointers. */
|
|
|
|
#if __WORDSIZE == 64
|
1999-06-23 11:04:09 +00:00
|
|
|
# ifndef __intptr_t_defined
|
1999-05-19 15:35:26 +00:00
|
|
|
typedef long int intptr_t;
|
1999-06-23 11:04:09 +00:00
|
|
|
# define __intptr_t_defined
|
1999-05-19 15:35:26 +00:00
|
|
|
# endif
|
|
|
|
typedef unsigned long int uintptr_t;
|
|
|
|
#else
|
1999-06-23 11:04:09 +00:00
|
|
|
# ifndef __intptr_t_defined
|
1999-05-19 15:35:26 +00:00
|
|
|
typedef int intptr_t;
|
1999-06-23 11:04:09 +00:00
|
|
|
# define __intptr_t_defined
|
1999-05-19 15:35:26 +00:00
|
|
|
# endif
|
|
|
|
typedef unsigned int uintptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Largest integral types. */
|
2016-12-30 13:41:40 +00:00
|
|
|
typedef __intmax_t intmax_t;
|
|
|
|
typedef __uintmax_t uintmax_t;
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define __INT64_C(c) c ## L
|
|
|
|
# define __UINT64_C(c) c ## UL
|
|
|
|
# else
|
|
|
|
# define __INT64_C(c) c ## LL
|
|
|
|
# define __UINT64_C(c) c ## ULL
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Limits of integral types. */
|
|
|
|
|
|
|
|
/* Minimum of signed integral types. */
|
|
|
|
# define INT8_MIN (-128)
|
|
|
|
# define INT16_MIN (-32767-1)
|
|
|
|
# define INT32_MIN (-2147483647-1)
|
|
|
|
# define INT64_MIN (-__INT64_C(9223372036854775807)-1)
|
|
|
|
/* Maximum of signed integral types. */
|
|
|
|
# define INT8_MAX (127)
|
|
|
|
# define INT16_MAX (32767)
|
|
|
|
# define INT32_MAX (2147483647)
|
|
|
|
# define INT64_MAX (__INT64_C(9223372036854775807))
|
|
|
|
|
|
|
|
/* Maximum of unsigned integral types. */
|
2000-09-01 06:39:10 +00:00
|
|
|
# define UINT8_MAX (255)
|
|
|
|
# define UINT16_MAX (65535)
|
1999-05-19 15:35:26 +00:00
|
|
|
# define UINT32_MAX (4294967295U)
|
|
|
|
# define UINT64_MAX (__UINT64_C(18446744073709551615))
|
|
|
|
|
|
|
|
|
|
|
|
/* Minimum of signed integral types having a minimum size. */
|
|
|
|
# define INT_LEAST8_MIN (-128)
|
|
|
|
# define INT_LEAST16_MIN (-32767-1)
|
|
|
|
# define INT_LEAST32_MIN (-2147483647-1)
|
|
|
|
# define INT_LEAST64_MIN (-__INT64_C(9223372036854775807)-1)
|
|
|
|
/* Maximum of signed integral types having a minimum size. */
|
|
|
|
# define INT_LEAST8_MAX (127)
|
|
|
|
# define INT_LEAST16_MAX (32767)
|
|
|
|
# define INT_LEAST32_MAX (2147483647)
|
|
|
|
# define INT_LEAST64_MAX (__INT64_C(9223372036854775807))
|
|
|
|
|
|
|
|
/* Maximum of unsigned integral types having a minimum size. */
|
2000-09-01 06:39:10 +00:00
|
|
|
# define UINT_LEAST8_MAX (255)
|
|
|
|
# define UINT_LEAST16_MAX (65535)
|
1999-05-19 15:35:26 +00:00
|
|
|
# define UINT_LEAST32_MAX (4294967295U)
|
|
|
|
# define UINT_LEAST64_MAX (__UINT64_C(18446744073709551615))
|
|
|
|
|
|
|
|
|
|
|
|
/* Minimum of fast signed integral types having a minimum size. */
|
|
|
|
# define INT_FAST8_MIN (-128)
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define INT_FAST16_MIN (-9223372036854775807L-1)
|
|
|
|
# define INT_FAST32_MIN (-9223372036854775807L-1)
|
|
|
|
# else
|
|
|
|
# define INT_FAST16_MIN (-2147483647-1)
|
|
|
|
# define INT_FAST32_MIN (-2147483647-1)
|
|
|
|
# endif
|
|
|
|
# define INT_FAST64_MIN (-__INT64_C(9223372036854775807)-1)
|
|
|
|
/* Maximum of fast signed integral types having a minimum size. */
|
|
|
|
# define INT_FAST8_MAX (127)
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define INT_FAST16_MAX (9223372036854775807L)
|
|
|
|
# define INT_FAST32_MAX (9223372036854775807L)
|
|
|
|
# else
|
|
|
|
# define INT_FAST16_MAX (2147483647)
|
|
|
|
# define INT_FAST32_MAX (2147483647)
|
|
|
|
# endif
|
|
|
|
# define INT_FAST64_MAX (__INT64_C(9223372036854775807))
|
|
|
|
|
|
|
|
/* Maximum of fast unsigned integral types having a minimum size. */
|
2000-09-01 06:39:10 +00:00
|
|
|
# define UINT_FAST8_MAX (255)
|
1999-05-19 15:35:26 +00:00
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define UINT_FAST16_MAX (18446744073709551615UL)
|
|
|
|
# define UINT_FAST32_MAX (18446744073709551615UL)
|
|
|
|
# else
|
|
|
|
# define UINT_FAST16_MAX (4294967295U)
|
|
|
|
# define UINT_FAST32_MAX (4294967295U)
|
|
|
|
# endif
|
|
|
|
# define UINT_FAST64_MAX (__UINT64_C(18446744073709551615))
|
|
|
|
|
|
|
|
|
|
|
|
/* Values to test for integral types holding `void *' pointer. */
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define INTPTR_MIN (-9223372036854775807L-1)
|
|
|
|
# define INTPTR_MAX (9223372036854775807L)
|
|
|
|
# define UINTPTR_MAX (18446744073709551615UL)
|
|
|
|
# else
|
|
|
|
# define INTPTR_MIN (-2147483647-1)
|
|
|
|
# define INTPTR_MAX (2147483647)
|
|
|
|
# define UINTPTR_MAX (4294967295U)
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Minimum for largest signed integral type. */
|
|
|
|
# define INTMAX_MIN (-__INT64_C(9223372036854775807)-1)
|
|
|
|
/* Maximum for largest signed integral type. */
|
|
|
|
# define INTMAX_MAX (__INT64_C(9223372036854775807))
|
|
|
|
|
|
|
|
/* Maximum for largest unsigned integral type. */
|
|
|
|
# define UINTMAX_MAX (__UINT64_C(18446744073709551615))
|
|
|
|
|
|
|
|
|
|
|
|
/* Limits of other integer types. */
|
|
|
|
|
|
|
|
/* Limits of `ptrdiff_t' type. */
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define PTRDIFF_MIN (-9223372036854775807L-1)
|
|
|
|
# define PTRDIFF_MAX (9223372036854775807L)
|
|
|
|
# else
|
2016-11-04 16:37:44 +00:00
|
|
|
# if __WORDSIZE32_PTRDIFF_LONG
|
|
|
|
# define PTRDIFF_MIN (-2147483647L-1)
|
|
|
|
# define PTRDIFF_MAX (2147483647L)
|
|
|
|
# else
|
|
|
|
# define PTRDIFF_MIN (-2147483647-1)
|
|
|
|
# define PTRDIFF_MAX (2147483647)
|
|
|
|
# endif
|
1999-05-19 15:35:26 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Limits of `sig_atomic_t'. */
|
|
|
|
# define SIG_ATOMIC_MIN (-2147483647-1)
|
|
|
|
# define SIG_ATOMIC_MAX (2147483647)
|
|
|
|
|
|
|
|
/* Limit of `size_t' type. */
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define SIZE_MAX (18446744073709551615UL)
|
|
|
|
# else
|
2016-11-04 16:37:44 +00:00
|
|
|
# if __WORDSIZE32_SIZE_ULONG
|
2014-03-24 15:46:51 +00:00
|
|
|
# define SIZE_MAX (4294967295UL)
|
|
|
|
# else
|
|
|
|
# define SIZE_MAX (4294967295U)
|
|
|
|
# endif
|
1999-05-19 15:35:26 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Limits of `wchar_t'. */
|
|
|
|
# ifndef WCHAR_MIN
|
|
|
|
/* These constants might also be defined in <wchar.h>. */
|
2000-09-01 06:39:10 +00:00
|
|
|
# define WCHAR_MIN __WCHAR_MIN
|
|
|
|
# define WCHAR_MAX __WCHAR_MAX
|
1999-05-19 15:35:26 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Limits of `wint_t'. */
|
2000-09-01 06:39:10 +00:00
|
|
|
# define WINT_MIN (0u)
|
2009-04-25 16:16:28 +00:00
|
|
|
# define WINT_MAX (4294967295u)
|
1999-05-19 15:35:26 +00:00
|
|
|
|
|
|
|
/* Signed. */
|
|
|
|
# define INT8_C(c) c
|
|
|
|
# define INT16_C(c) c
|
|
|
|
# define INT32_C(c) c
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define INT64_C(c) c ## L
|
|
|
|
# else
|
|
|
|
# define INT64_C(c) c ## LL
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Unsigned. */
|
2006-08-12 21:23:54 +00:00
|
|
|
# define UINT8_C(c) c
|
|
|
|
# define UINT16_C(c) c
|
1999-05-19 15:35:26 +00:00
|
|
|
# define UINT32_C(c) c ## U
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define UINT64_C(c) c ## UL
|
|
|
|
# else
|
|
|
|
# define UINT64_C(c) c ## ULL
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Maximal type. */
|
|
|
|
# if __WORDSIZE == 64
|
|
|
|
# define INTMAX_C(c) c ## L
|
|
|
|
# define UINTMAX_C(c) c ## UL
|
|
|
|
# else
|
|
|
|
# define INTMAX_C(c) c ## LL
|
|
|
|
# define UINTMAX_C(c) c ## ULL
|
|
|
|
# endif
|
|
|
|
|
2016-09-21 17:06:36 +00:00
|
|
|
#if __GLIBC_USE (IEC_60559_BFP_EXT)
|
|
|
|
|
|
|
|
# define INT8_WIDTH 8
|
|
|
|
# define UINT8_WIDTH 8
|
|
|
|
# define INT16_WIDTH 16
|
|
|
|
# define UINT16_WIDTH 16
|
|
|
|
# define INT32_WIDTH 32
|
|
|
|
# define UINT32_WIDTH 32
|
|
|
|
# define INT64_WIDTH 64
|
|
|
|
# define UINT64_WIDTH 64
|
|
|
|
|
|
|
|
# define INT_LEAST8_WIDTH 8
|
|
|
|
# define UINT_LEAST8_WIDTH 8
|
|
|
|
# define INT_LEAST16_WIDTH 16
|
|
|
|
# define UINT_LEAST16_WIDTH 16
|
|
|
|
# define INT_LEAST32_WIDTH 32
|
|
|
|
# define UINT_LEAST32_WIDTH 32
|
|
|
|
# define INT_LEAST64_WIDTH 64
|
|
|
|
# define UINT_LEAST64_WIDTH 64
|
|
|
|
|
|
|
|
# define INT_FAST8_WIDTH 8
|
|
|
|
# define UINT_FAST8_WIDTH 8
|
|
|
|
# define INT_FAST16_WIDTH __WORDSIZE
|
|
|
|
# define UINT_FAST16_WIDTH __WORDSIZE
|
|
|
|
# define INT_FAST32_WIDTH __WORDSIZE
|
|
|
|
# define UINT_FAST32_WIDTH __WORDSIZE
|
|
|
|
# define INT_FAST64_WIDTH 64
|
|
|
|
# define UINT_FAST64_WIDTH 64
|
|
|
|
|
|
|
|
# define INTPTR_WIDTH __WORDSIZE
|
|
|
|
# define UINTPTR_WIDTH __WORDSIZE
|
|
|
|
|
|
|
|
# define INTMAX_WIDTH 64
|
|
|
|
# define UINTMAX_WIDTH 64
|
|
|
|
|
|
|
|
# define PTRDIFF_WIDTH __WORDSIZE
|
|
|
|
# define SIG_ATOMIC_WIDTH 32
|
|
|
|
# define SIZE_WIDTH __WORDSIZE
|
|
|
|
# define WCHAR_WIDTH 32
|
|
|
|
# define WINT_WIDTH 32
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1999-05-19 15:35:26 +00:00
|
|
|
#endif /* stdint.h */
|