2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 1997-2024 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
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://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. */
|
Implement C23 <stdbit.h>
C23 adds a header <stdbit.h> with various functions and type-generic
macros for bit-manipulation of unsigned integers (plus macro defines
related to endianness). Implement this header for glibc.
The functions have both inline definitions in the header (referenced
by macros defined in the header) and copies with external linkage in
the library (which are implemented in terms of those macros to avoid
duplication). They are documented in the glibc manual. Tests, as
well as verifying results for various inputs (of both the macros and
the out-of-line functions), verify the types of those results (which
showed up a bug in an earlier version with the type-generic macro
stdc_has_single_bit wrongly returning a promoted type), that the
macros can be used at top level in a source file (so don't use ({})),
that they evaluate their arguments exactly once, and that the macros
for the type-specific functions have the expected implicit conversions
to the relevant argument type.
Jakub previously referred to -Wconversion warnings in type-generic
macros, so I've included a test with -Wconversion (but the only
warnings I saw and fixed from that test were actually in inline
functions in the <stdbit.h> header - not anything coming from use of
the type-generic macros themselves).
This implementation of the type-generic macros does not handle
unsigned __int128, or unsigned _BitInt types with a width other than
that of a standard integer type (and C23 doesn't require the header to
handle such types either). Support for those types, using the new
type-generic built-in functions Jakub's added for GCC 14, can
reasonably be added in a followup (along of course with associated
tests).
This implementation doesn't do anything special to handle C++, or have
any tests of functionality in C++ beyond the existing tests that all
headers can be compiled in C++ code; it's not clear exactly what form
this header should take in C++, but probably not one using macros.
DIS ballot comment AT-107 asks for the word "count" to be added to the
names of the stdc_leading_zeros, stdc_leading_ones,
stdc_trailing_zeros and stdc_trailing_ones functions and macros. I
don't think it's likely to be accepted (accepting any technical
comments would mean having an FDIS ballot), but if it is accepted at
the WG14 meeting (22-26 January in Strasbourg, starting with DIS
ballot comment handling) then there would still be time to update
glibc for the renaming before the 2.39 release.
The new functions and header are placed in the stdlib/ directory in
glibc, rather than creating a new toplevel stdbit/ or putting them in
string/ alongside ffs.
Tested for x86_64 and x86.
2024-01-03 12:07:14 +00:00
|
|
|
#include <bits/stdint-least.h>
|
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
|
|
|
|
|
2024-02-01 11:02:01 +00:00
|
|
|
#if __GLIBC_USE (IEC_60559_BFP_EXT_C23)
|
2016-09-21 17:06:36 +00:00
|
|
|
|
|
|
|
# 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 */
|