2018-10-15 05:55:37 +00:00
|
|
|
/* System definitions for code taken from the GNU C Library
|
|
|
|
|
2022-01-01 07:45:51 +00:00
|
|
|
Copyright 2017-2022 Free Software Foundation, Inc.
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
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
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2018-10-15 05:55:37 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
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
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
This program 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
|
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
|
|
|
Lesser General Public License for more details.
|
2018-10-15 05:55:37 +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
|
2018-10-15 05:55:37 +00:00
|
|
|
License along with this program; if not, see
|
|
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
/* Written by Paul Eggert. */
|
|
|
|
|
|
|
|
/* This is intended to be a good-enough substitute for glibc system
|
|
|
|
macros like those defined in <sys/cdefs.h>, so that Gnulib code
|
|
|
|
shared with glibc can do this as the first #include:
|
|
|
|
|
|
|
|
#ifndef _LIBC
|
|
|
|
# include <libc-config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
When compiled as part of glibc this is a no-op; when compiled as
|
|
|
|
part of Gnulib this includes Gnulib's <config.h> and defines macros
|
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
|
|
|
that glibc library code would normally assume.
|
|
|
|
|
|
|
|
Note: This header file MUST NOT be included by public header files
|
|
|
|
of Gnulib. */
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
/* On glibc this includes <features.h> and <sys/cdefs.h> and #defines
|
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
|
|
|
_FEATURES_H, __WORDSIZE, and __set_errno. On FreeBSD 11 and
|
|
|
|
DragonFlyBSD 5.9 it includes <sys/cdefs.h> which defines __nonnull.
|
|
|
|
Elsewhere it is harmless. */
|
2018-10-15 05:55:37 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
/* From glibc <errno.h>. */
|
|
|
|
#ifndef __set_errno
|
|
|
|
# define __set_errno(val) (errno = (val))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* From glibc <features.h>. */
|
|
|
|
|
|
|
|
#ifndef __GNUC_PREREQ
|
|
|
|
# if defined __GNUC__ && defined __GNUC_MINOR__
|
|
|
|
# define __GNUC_PREREQ(maj, min) ((maj) < __GNUC__ + ((min) <= __GNUC_MINOR__))
|
|
|
|
# else
|
|
|
|
# define __GNUC_PREREQ(maj, min) 0
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __glibc_clang_prereq
|
|
|
|
# if defined __clang_major__ && defined __clang_minor__
|
2020-02-09 08:44:11 +00:00
|
|
|
# ifdef __apple_build_version__
|
|
|
|
/* Apple for some reason renumbers __clang_major__ and __clang_minor__.
|
|
|
|
Gnulib code uses only __glibc_clang_prereq (3, 5); map it to
|
|
|
|
6000000 <= __apple_build_version__. Support for other calls to
|
|
|
|
__glibc_clang_prereq can be added here as needed. */
|
|
|
|
# define __glibc_clang_prereq(maj, min) \
|
|
|
|
((maj) == 3 && (min) == 5 ? 6000000 <= __apple_build_version__ : 0)
|
|
|
|
# else
|
|
|
|
# define __glibc_clang_prereq(maj, min) \
|
|
|
|
((maj) < __clang_major__ + ((min) <= __clang_minor__))
|
|
|
|
# endif
|
2018-10-15 05:55:37 +00:00
|
|
|
# else
|
|
|
|
# define __glibc_clang_prereq(maj, min) 0
|
|
|
|
# endif
|
|
|
|
#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
|
|
|
#ifndef __attribute_nonnull__
|
2021-01-22 19:45:38 +00:00
|
|
|
/* <sys/cdefs.h> either does not exist, or is too old for Gnulib.
|
|
|
|
Prepare to include <cdefs.h>, which is Gnulib's version of a
|
|
|
|
more-recent glibc <sys/cdefs.h>. */
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
/* Define _FEATURES_H so that <cdefs.h> does not include <features.h>. */
|
2021-01-22 19:45:38 +00:00
|
|
|
# ifndef _FEATURES_H
|
|
|
|
# define _FEATURES_H 1
|
|
|
|
# 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
|
|
|
/* Define __GNULIB_CDEFS so that <cdefs.h> does not attempt to include
|
|
|
|
nonexistent files. */
|
|
|
|
# define __GNULIB_CDEFS
|
2018-10-15 05:55:37 +00:00
|
|
|
/* Undef the macros unconditionally defined by our copy of glibc
|
|
|
|
<sys/cdefs.h>, so that they do not clash with any system-defined
|
|
|
|
versions. */
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef _SYS_CDEFS_H
|
|
|
|
# undef __ASMNAME
|
|
|
|
# undef __ASMNAME2
|
|
|
|
# undef __BEGIN_DECLS
|
|
|
|
# undef __CONCAT
|
|
|
|
# undef __END_DECLS
|
|
|
|
# undef __HAVE_GENERIC_SELECTION
|
|
|
|
# undef __LDBL_COMPAT
|
|
|
|
# undef __LDBL_REDIR
|
|
|
|
# undef __LDBL_REDIR1
|
|
|
|
# undef __LDBL_REDIR1_DECL
|
|
|
|
# undef __LDBL_REDIR1_NTH
|
|
|
|
# undef __LDBL_REDIR2_DECL
|
|
|
|
# undef __LDBL_REDIR_DECL
|
|
|
|
# undef __LDBL_REDIR_NTH
|
|
|
|
# undef __LEAF
|
|
|
|
# undef __LEAF_ATTR
|
|
|
|
# undef __NTH
|
|
|
|
# undef __NTHNL
|
|
|
|
# undef __REDIRECT
|
|
|
|
# undef __REDIRECT_LDBL
|
|
|
|
# undef __REDIRECT_NTH
|
|
|
|
# undef __REDIRECT_NTHNL
|
|
|
|
# undef __REDIRECT_NTH_LDBL
|
|
|
|
# undef __STRING
|
|
|
|
# undef __THROW
|
|
|
|
# undef __THROWNL
|
|
|
|
# undef __attr_access
|
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
|
|
|
# undef __attr_access_none
|
|
|
|
# undef __attr_dealloc
|
|
|
|
# undef __attr_dealloc_free
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __attribute__
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __attribute_alloc_align__
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __attribute_alloc_size__
|
|
|
|
# undef __attribute_artificial__
|
|
|
|
# undef __attribute_const__
|
|
|
|
# undef __attribute_deprecated__
|
|
|
|
# undef __attribute_deprecated_msg__
|
|
|
|
# undef __attribute_format_arg__
|
|
|
|
# undef __attribute_format_strfmon__
|
|
|
|
# undef __attribute_malloc__
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __attribute_maybe_unused__
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __attribute_noinline__
|
|
|
|
# undef __attribute_nonstring__
|
|
|
|
# undef __attribute_pure__
|
|
|
|
# undef __attribute_returns_twice__
|
|
|
|
# undef __attribute_used__
|
|
|
|
# undef __attribute_warn_unused_result__
|
|
|
|
# undef __bos
|
|
|
|
# undef __bos0
|
|
|
|
# undef __errordecl
|
|
|
|
# undef __extension__
|
|
|
|
# undef __extern_always_inline
|
|
|
|
# undef __extern_inline
|
|
|
|
# undef __flexarr
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __fortified_attr_access
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __fortify_function
|
|
|
|
# undef __glibc_c99_flexarr_available
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __glibc_fortify
|
|
|
|
# undef __glibc_fortify_n
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __glibc_has_attribute
|
|
|
|
# undef __glibc_has_builtin
|
|
|
|
# undef __glibc_has_extension
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __glibc_likely
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __glibc_macro_warning
|
|
|
|
# undef __glibc_macro_warning1
|
|
|
|
# undef __glibc_objsize
|
|
|
|
# undef __glibc_objsize0
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __glibc_safe_len_cond
|
|
|
|
# undef __glibc_safe_or_unknown_len
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __glibc_unlikely
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __glibc_unsafe_len
|
|
|
|
# undef __glibc_unsigned_or_positive
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __inline
|
|
|
|
# undef __ptr_t
|
|
|
|
# undef __restrict
|
|
|
|
# undef __restrict_arr
|
|
|
|
# undef __va_arg_pack
|
|
|
|
# undef __va_arg_pack_len
|
|
|
|
# undef __warnattr
|
2022-05-05 22:36:33 +00:00
|
|
|
# undef __wur
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
/* Include our copy of glibc <sys/cdefs.h>. */
|
2021-01-22 19:45:38 +00:00
|
|
|
# include <cdefs.h>
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
/* <cdefs.h> __inline is too pessimistic for non-GCC. */
|
2021-01-22 19:45:38 +00:00
|
|
|
# undef __inline
|
|
|
|
# ifndef HAVE___INLINE
|
|
|
|
# if 199901 <= __STDC_VERSION__ || defined inline
|
|
|
|
# define __inline inline
|
|
|
|
# else
|
|
|
|
# define __inline
|
|
|
|
# endif
|
2018-10-15 05:55:37 +00:00
|
|
|
# endif
|
2021-01-22 19:45:38 +00:00
|
|
|
|
|
|
|
#endif /* defined __glibc_likely */
|
2018-10-15 05:55:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* A substitute for glibc <libc-symbols.h>, good enough for Gnulib. */
|
|
|
|
#define attribute_hidden
|
2021-01-22 19:45:38 +00:00
|
|
|
#define libc_hidden_proto(name)
|
2018-10-15 05:55:37 +00:00
|
|
|
#define libc_hidden_def(name)
|
|
|
|
#define libc_hidden_weak(name)
|
|
|
|
#define libc_hidden_ver(local, name)
|
|
|
|
#define strong_alias(name, aliasname)
|
|
|
|
#define weak_alias(name, aliasname)
|
|
|
|
|
|
|
|
/* A substitute for glibc <shlib-compat.h>, good enough for Gnulib. */
|
|
|
|
#define SHLIB_COMPAT(lib, introduced, obsoleted) 0
|
Update from Gnulib
This incorporates:
2020-06-27 getloadavg: don’t depend on fopen-gnu
2020-06-25 c-dtoastr, c-ldtoastr: new modules
2020-06-01 getloadavg: fix double-increment bug
2020-06-01 tempname: use getrandom, not getentropy
2020-05-31 tempname: merge from glibc and coreutils
2020-05-31 getentropy: work around a macOS and Solaris problem
2020-05-31 fnmatch: merge from glibc
2020-05-30 unistd: remove conflicting declaration of getrandom
2020-05-30 don't assume that UNICODE is not defined
2020-05-29 fix compilation error on native Windows
2020-05-28 avoid dynamic loading of Windows API functions when possible
2020-05-28 at-internal: make more robust in multithreaded applications
2020-05-28 getloadavg: make more robust in multithreaded applications
2020-05-27 getloadavg: make more robust in multithreaded applications
2020-05-26 count-one-bits: fix MSVC specific code
2020-05-25 getentropy, getrandom: new modules
2020-05-24 open, openat: really support O_CLOEXEC
2020-05-23 verify: document ‘assume’ better
2020-05-21 regex: configure better with "clang -fsanitize=leak"
2020-05-21 memmem: configure better with "clang -fsanitize=undefined"
2020-05-19 ftoastr: fix ifndef typo
* build-aux/config.guess, build-aux/config.sub, doc/misc/texinfo.tex:
* lib/count-one-bits.h, lib/ftoastr.c, lib/ftoastr.h:
* lib/getloadavg.c, lib/gettimeofday.c, lib/libc-config.h:
* lib/open.c, lib/openat-proc.c, lib/tempname.c, lib/tempname.h:
* lib/unistd.in.h, lib/verify.h, m4/memmem.m4, m4/regex.m4:
* m4/unistd_h.m4:
Update from Gnulib.
* lib/getrandom.c, lib/sys_random.in.h:
* m4/getrandom.m4, m4/sys_random_h.m4:
New files, copied from Gnulib.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
2020-06-27 17:00:17 +00:00
|
|
|
#define compat_symbol(lib, local, symbol, version) extern int dummy
|
|
|
|
#define versioned_symbol(lib, local, symbol, version) extern int dummy
|