2016-09-15 18:50:23 +00:00
|
|
|
/* A GNU-like <limits.h>.
|
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
Copyright 2016-2024 Free Software Foundation, Inc.
|
2016-09-15 18:50:23 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
This file is free software: you can redistribute it and/or 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.
|
2016-09-15 18:50:23 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
This file is distributed in the hope that it will be useful,
|
2016-09-15 18:50:23 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
GNU Lesser General Public License for more details.
|
2016-09-15 18:50:23 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2016-09-15 18:50:23 +00:00
|
|
|
|
|
|
|
#if __GNUC__ >= 3
|
|
|
|
@PRAGMA_SYSTEM_HEADER@
|
|
|
|
#endif
|
|
|
|
@PRAGMA_COLUMNS@
|
|
|
|
|
2020-05-09 15:47:05 +00:00
|
|
|
#if defined _GL_ALREADY_INCLUDING_LIMITS_H
|
|
|
|
/* Special invocation convention:
|
|
|
|
On Haiku/x86_64, we have a sequence of nested includes
|
|
|
|
<limits.h> -> <syslimits.h> -> <limits.h>.
|
|
|
|
In this situation, LONG_MAX and INT_MAX are not yet defined,
|
|
|
|
therefore we should not attempt to define LONG_BIT. */
|
|
|
|
|
2016-09-15 18:50:23 +00:00
|
|
|
#@INCLUDE_NEXT@ @NEXT_LIMITS_H@
|
|
|
|
|
2020-05-09 15:47:05 +00:00
|
|
|
#else
|
|
|
|
/* Normal invocation convention. */
|
|
|
|
|
|
|
|
#ifndef _@GUARD_PREFIX@_LIMITS_H
|
|
|
|
|
|
|
|
# define _GL_ALREADY_INCLUDING_LIMITS_H
|
|
|
|
|
|
|
|
/* The include_next requires a split double-inclusion guard. */
|
|
|
|
# @INCLUDE_NEXT@ @NEXT_LIMITS_H@
|
|
|
|
|
|
|
|
# undef _GL_ALREADY_INCLUDING_LIMITS_H
|
|
|
|
|
2016-09-15 18:50:23 +00:00
|
|
|
#ifndef _@GUARD_PREFIX@_LIMITS_H
|
|
|
|
#define _@GUARD_PREFIX@_LIMITS_H
|
|
|
|
|
Update from Gnulib
This incorporates:
2018-09-10 timespec: fix resolution confusion
2018-09-09 mktime: simplify in prep for glibc merge
2018-09-07 intprops: minor clarification of code
2018-09-06 stddef: Override max_align_t on NetBSD 8.0/x86
2018-09-06 fcntl: Fix F_DUPFD_CLOEXEC behaviour on Haiku
2018-09-06 strtoll, strtoull: Rely on limits-h module
2018-09-06 limits-h: Provide numerical limits macros
2018-09-06 fcntl: Don't access nonexistent optional argument
2018-09-02 mktime: fix unlikely race+overflow bug
2018-08-31 mktime, timegm: simplify glibc time64_t
2018-08-31 mktime, timegm: simplify merge to glibc
* build-aux/config.guess, build-aux/config.sub:
* lib/dtotimespec.c, lib/fcntl.c, lib/intprops.h:
* lib/limits.in.h, lib/mktime-internal.h, lib/mktime.c:
* lib/stat-time.h, lib/strtol.c, lib/timegm.c:
* lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
* lib/utimens.c, m4/limits-h.m4, m4/stddef_h.m4:
Copy from Gnulib.
2018-09-11 04:16:03 +00:00
|
|
|
#ifndef LLONG_MIN
|
|
|
|
# if defined LONG_LONG_MIN /* HP-UX 11.31 */
|
|
|
|
# define LLONG_MIN LONG_LONG_MIN
|
|
|
|
# elif defined LONGLONG_MIN /* IRIX 6.5 */
|
|
|
|
# define LLONG_MIN LONGLONG_MIN
|
|
|
|
# elif defined __GNUC__
|
|
|
|
# define LLONG_MIN (- __LONG_LONG_MAX__ - 1LL)
|
|
|
|
# endif
|
2017-03-19 20:07:03 +00:00
|
|
|
#endif
|
Update from Gnulib
This incorporates:
2018-09-10 timespec: fix resolution confusion
2018-09-09 mktime: simplify in prep for glibc merge
2018-09-07 intprops: minor clarification of code
2018-09-06 stddef: Override max_align_t on NetBSD 8.0/x86
2018-09-06 fcntl: Fix F_DUPFD_CLOEXEC behaviour on Haiku
2018-09-06 strtoll, strtoull: Rely on limits-h module
2018-09-06 limits-h: Provide numerical limits macros
2018-09-06 fcntl: Don't access nonexistent optional argument
2018-09-02 mktime: fix unlikely race+overflow bug
2018-08-31 mktime, timegm: simplify glibc time64_t
2018-08-31 mktime, timegm: simplify merge to glibc
* build-aux/config.guess, build-aux/config.sub:
* lib/dtotimespec.c, lib/fcntl.c, lib/intprops.h:
* lib/limits.in.h, lib/mktime-internal.h, lib/mktime.c:
* lib/stat-time.h, lib/strtol.c, lib/timegm.c:
* lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
* lib/utimens.c, m4/limits-h.m4, m4/stddef_h.m4:
Copy from Gnulib.
2018-09-11 04:16:03 +00:00
|
|
|
#ifndef LLONG_MAX
|
|
|
|
# if defined LONG_LONG_MAX /* HP-UX 11.31 */
|
|
|
|
# define LLONG_MAX LONG_LONG_MAX
|
|
|
|
# elif defined LONGLONG_MAX /* IRIX 6.5 */
|
|
|
|
# define LLONG_MAX LONGLONG_MAX
|
|
|
|
# elif defined __GNUC__
|
|
|
|
# define LLONG_MAX __LONG_LONG_MAX__
|
|
|
|
# endif
|
2017-03-19 20:07:03 +00:00
|
|
|
#endif
|
Update from Gnulib
This incorporates:
2018-09-10 timespec: fix resolution confusion
2018-09-09 mktime: simplify in prep for glibc merge
2018-09-07 intprops: minor clarification of code
2018-09-06 stddef: Override max_align_t on NetBSD 8.0/x86
2018-09-06 fcntl: Fix F_DUPFD_CLOEXEC behaviour on Haiku
2018-09-06 strtoll, strtoull: Rely on limits-h module
2018-09-06 limits-h: Provide numerical limits macros
2018-09-06 fcntl: Don't access nonexistent optional argument
2018-09-02 mktime: fix unlikely race+overflow bug
2018-08-31 mktime, timegm: simplify glibc time64_t
2018-08-31 mktime, timegm: simplify merge to glibc
* build-aux/config.guess, build-aux/config.sub:
* lib/dtotimespec.c, lib/fcntl.c, lib/intprops.h:
* lib/limits.in.h, lib/mktime-internal.h, lib/mktime.c:
* lib/stat-time.h, lib/strtol.c, lib/timegm.c:
* lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
* lib/utimens.c, m4/limits-h.m4, m4/stddef_h.m4:
Copy from Gnulib.
2018-09-11 04:16:03 +00:00
|
|
|
#ifndef ULLONG_MAX
|
|
|
|
# if defined ULONG_LONG_MAX /* HP-UX 11.31 */
|
|
|
|
# define ULLONG_MAX ULONG_LONG_MAX
|
|
|
|
# elif defined ULONGLONG_MAX /* IRIX 6.5 */
|
|
|
|
# define ULLONG_MAX ULONGLONG_MAX
|
|
|
|
# elif defined __GNUC__
|
|
|
|
# define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1ULL)
|
|
|
|
# endif
|
2017-03-19 20:07:03 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-15 18:50:23 +00:00
|
|
|
/* The number of usable bits in an unsigned or signed integer type
|
|
|
|
with minimum value MIN and maximum value MAX, as an int expression
|
|
|
|
suitable in #if. Cover all known practical hosts. This
|
|
|
|
implementation exploits the fact that MAX is 1 less than a power of
|
|
|
|
2, and merely counts the number of 1 bits in MAX; "COBn" means
|
|
|
|
"count the number of 1 bits in the low-order n bits"). */
|
|
|
|
#define _GL_INTEGER_WIDTH(min, max) (((min) < 0) + _GL_COB128 (max))
|
|
|
|
#define _GL_COB128(n) (_GL_COB64 ((n) >> 31 >> 31 >> 2) + _GL_COB64 (n))
|
|
|
|
#define _GL_COB64(n) (_GL_COB32 ((n) >> 31 >> 1) + _GL_COB32 (n))
|
|
|
|
#define _GL_COB32(n) (_GL_COB16 ((n) >> 16) + _GL_COB16 (n))
|
|
|
|
#define _GL_COB16(n) (_GL_COB8 ((n) >> 8) + _GL_COB8 (n))
|
|
|
|
#define _GL_COB8(n) (_GL_COB4 ((n) >> 4) + _GL_COB4 (n))
|
|
|
|
#define _GL_COB4(n) (!!((n) & 8) + !!((n) & 4) + !!((n) & 2) + !!((n) & 1))
|
|
|
|
|
Update from Gnulib
This incorporates:
2018-09-10 timespec: fix resolution confusion
2018-09-09 mktime: simplify in prep for glibc merge
2018-09-07 intprops: minor clarification of code
2018-09-06 stddef: Override max_align_t on NetBSD 8.0/x86
2018-09-06 fcntl: Fix F_DUPFD_CLOEXEC behaviour on Haiku
2018-09-06 strtoll, strtoull: Rely on limits-h module
2018-09-06 limits-h: Provide numerical limits macros
2018-09-06 fcntl: Don't access nonexistent optional argument
2018-09-02 mktime: fix unlikely race+overflow bug
2018-08-31 mktime, timegm: simplify glibc time64_t
2018-08-31 mktime, timegm: simplify merge to glibc
* build-aux/config.guess, build-aux/config.sub:
* lib/dtotimespec.c, lib/fcntl.c, lib/intprops.h:
* lib/limits.in.h, lib/mktime-internal.h, lib/mktime.c:
* lib/stat-time.h, lib/strtol.c, lib/timegm.c:
* lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
* lib/utimens.c, m4/limits-h.m4, m4/stddef_h.m4:
Copy from Gnulib.
2018-09-11 04:16:03 +00:00
|
|
|
#ifndef WORD_BIT
|
|
|
|
/* Assume 'int' is 32 bits wide. */
|
|
|
|
# define WORD_BIT 32
|
|
|
|
#endif
|
|
|
|
#ifndef LONG_BIT
|
|
|
|
/* Assume 'long' is 32 or 64 bits wide. */
|
|
|
|
# if LONG_MAX == INT_MAX
|
|
|
|
# define LONG_BIT 32
|
|
|
|
# else
|
|
|
|
# define LONG_BIT 64
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2023-05-15 01:51:22 +00:00
|
|
|
/* Assume no multibyte character is longer than 16 bytes. */
|
|
|
|
#ifndef MB_LEN_MAX
|
|
|
|
# define MB_LEN_MAX 16
|
|
|
|
#endif
|
|
|
|
|
2023-01-07 01:53:54 +00:00
|
|
|
/* Macros specified by C23 and by ISO/IEC TS 18661-1:2014. */
|
2016-09-15 18:50:23 +00:00
|
|
|
|
|
|
|
#if (! defined ULLONG_WIDTH \
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
&& (defined _GNU_SOURCE || defined __STDC_WANT_IEC_60559_BFP_EXT__ \
|
|
|
|
|| (defined __STDC_VERSION__ && 201710 < __STDC_VERSION__)))
|
2016-09-15 18:50:23 +00:00
|
|
|
# define CHAR_WIDTH _GL_INTEGER_WIDTH (CHAR_MIN, CHAR_MAX)
|
|
|
|
# define SCHAR_WIDTH _GL_INTEGER_WIDTH (SCHAR_MIN, SCHAR_MAX)
|
|
|
|
# define UCHAR_WIDTH _GL_INTEGER_WIDTH (0, UCHAR_MAX)
|
|
|
|
# define SHRT_WIDTH _GL_INTEGER_WIDTH (SHRT_MIN, SHRT_MAX)
|
|
|
|
# define USHRT_WIDTH _GL_INTEGER_WIDTH (0, USHRT_MAX)
|
|
|
|
# define INT_WIDTH _GL_INTEGER_WIDTH (INT_MIN, INT_MAX)
|
|
|
|
# define UINT_WIDTH _GL_INTEGER_WIDTH (0, UINT_MAX)
|
|
|
|
# define LONG_WIDTH _GL_INTEGER_WIDTH (LONG_MIN, LONG_MAX)
|
|
|
|
# define ULONG_WIDTH _GL_INTEGER_WIDTH (0, ULONG_MAX)
|
|
|
|
# define LLONG_WIDTH _GL_INTEGER_WIDTH (LLONG_MIN, LLONG_MAX)
|
|
|
|
# define ULLONG_WIDTH _GL_INTEGER_WIDTH (0, ULLONG_MAX)
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
#endif
|
|
|
|
|
2023-01-07 01:53:54 +00:00
|
|
|
/* Macros specified by C23. */
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
|
2023-02-26 01:01:22 +00:00
|
|
|
#if (defined _GNU_SOURCE \
|
|
|
|
|| (defined __STDC_VERSION__ && 201710 < __STDC_VERSION__))
|
|
|
|
# if ! defined BOOL_WIDTH
|
|
|
|
# define BOOL_WIDTH 1
|
|
|
|
# define BOOL_MAX 1
|
|
|
|
# elif ! defined BOOL_MAX
|
2024-02-15 05:18:25 +00:00
|
|
|
# define BOOL_MAX 1
|
2023-02-26 01:01:22 +00:00
|
|
|
# endif
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
#endif
|
2016-09-15 18:50:23 +00:00
|
|
|
|
2023-06-07 19:00:15 +00:00
|
|
|
/* Macro specified by POSIX. */
|
|
|
|
|
2023-07-09 20:05:01 +00:00
|
|
|
/* The maximum ssize_t value. Although it might not be of ssize_t type
|
2023-06-07 19:00:15 +00:00
|
|
|
as it should be, it's too much trouble to fix this minor detail. */
|
|
|
|
#ifndef SSIZE_MAX
|
|
|
|
# ifdef _WIN64
|
|
|
|
# define SSIZE_MAX LLONG_MAX
|
|
|
|
# else
|
|
|
|
# define SSIZE_MAX LONG_MAX
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2016-09-15 18:50:23 +00:00
|
|
|
#endif /* _@GUARD_PREFIX@_LIMITS_H */
|
|
|
|
#endif /* _@GUARD_PREFIX@_LIMITS_H */
|
2020-05-09 15:47:05 +00:00
|
|
|
#endif
|