diff options
Diffstat (limited to 'aarch64-none-linux-gnu/libc/usr/include/gnu')
5 files changed, 111 insertions, 0 deletions
diff --git a/aarch64-none-linux-gnu/libc/usr/include/gnu/lib-names-lp64.h b/aarch64-none-linux-gnu/libc/usr/include/gnu/lib-names-lp64.h new file mode 100644 index 0000000..22b7a87 --- /dev/null +++ b/aarch64-none-linux-gnu/libc/usr/include/gnu/lib-names-lp64.h @@ -0,0 +1,28 @@ +/* This file is automatically generated. */ +#ifndef __GNU_LIB_NAMES_H +# error "Never use <gnu/lib-names-lp64.h> directly; include <gnu/lib-names.h> instead." +#endif + +#define LD_LINUX_AARCH64_SO "ld-linux-aarch64.so.1" +#define LD_SO "ld-linux-aarch64.so.1" +#define LIBANL_SO "libanl.so.1" +#define LIBBROKENLOCALE_SO "libBrokenLocale.so.1" +#define LIBCRYPT_SO "libcrypt.so.1" +#define LIBC_MALLOC_DEBUG_SO "libc_malloc_debug.so.0" +#define LIBC_SO "libc.so.6" +#define LIBDL_SO "libdl.so.2" +#define LIBGCC_S_SO "libgcc_s.so.1" +#define LIBMVEC_SO "libmvec.so.1" +#define LIBM_SO "libm.so.6" +#define LIBNSL_SO "libnsl.so.1" +#define LIBNSS_COMPAT_SO "libnss_compat.so.2" +#define LIBNSS_DB_SO "libnss_db.so.2" +#define LIBNSS_DNS_SO "libnss_dns.so.2" +#define LIBNSS_FILES_SO "libnss_files.so.2" +#define LIBNSS_HESIOD_SO "libnss_hesiod.so.2" +#define LIBNSS_LDAP_SO "libnss_ldap.so.2" +#define LIBPTHREAD_SO "libpthread.so.0" +#define LIBRESOLV_SO "libresolv.so.2" +#define LIBRT_SO "librt.so.1" +#define LIBTHREAD_DB_SO "libthread_db.so.1" +#define LIBUTIL_SO "libutil.so.1" diff --git a/aarch64-none-linux-gnu/libc/usr/include/gnu/lib-names.h b/aarch64-none-linux-gnu/libc/usr/include/gnu/lib-names.h new file mode 100644 index 0000000..67885f1 --- /dev/null +++ b/aarch64-none-linux-gnu/libc/usr/include/gnu/lib-names.h @@ -0,0 +1,16 @@ +/* This file is automatically generated. + It defines macros to allow user program to find the shared + library files which come as part of GNU libc. */ +#ifndef __GNU_LIB_NAMES_H +#define __GNU_LIB_NAMES_H 1 + +#include <bits/wordsize.h> + +#if !defined __AARCH64EB__ +# include <gnu/lib-names-lp64.h> +#endif +#if defined __AARCH64EB__ +# include <gnu/lib-names-lp64_be.h> +#endif + +#endif /* gnu/lib-names.h */ diff --git a/aarch64-none-linux-gnu/libc/usr/include/gnu/libc-version.h b/aarch64-none-linux-gnu/libc/usr/include/gnu/libc-version.h new file mode 100644 index 0000000..1773275 --- /dev/null +++ b/aarch64-none-linux-gnu/libc/usr/include/gnu/libc-version.h @@ -0,0 +1,34 @@ +/* Interface to GNU libc specific functions for version information. + Copyright (C) 1998-2023 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library 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. + + 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#ifndef _GNU_LIBC_VERSION_H +#define _GNU_LIBC_VERSION_H 1 + +#include <features.h> + +__BEGIN_DECLS + +/* Return string describing release status of currently running GNU libc. */ +extern const char *gnu_get_libc_release (void) __THROW; + +/* Return string describing version of currently running GNU libc. */ +extern const char *gnu_get_libc_version (void) __THROW; + +__END_DECLS + +#endif /* gnu/libc-version.h */ diff --git a/aarch64-none-linux-gnu/libc/usr/include/gnu/stubs-lp64.h b/aarch64-none-linux-gnu/libc/usr/include/gnu/stubs-lp64.h new file mode 100644 index 0000000..968313a --- /dev/null +++ b/aarch64-none-linux-gnu/libc/usr/include/gnu/stubs-lp64.h @@ -0,0 +1,21 @@ +/* This file is automatically generated. + It defines a symbol `__stub_FUNCTION' for each function + in the C library which is a stub, meaning it will fail + every time called, usually setting errno to ENOSYS. */ + +#ifdef _LIBC + #error Applications may not define the macro _LIBC +#endif + +#define __stub___compat_bdflush +#define __stub___compat_create_module +#define __stub___compat_get_kernel_syms +#define __stub___compat_query_module +#define __stub___compat_uselib +#define __stub_chflags +#define __stub_fchflags +#define __stub_gtty +#define __stub_revoke +#define __stub_setlogin +#define __stub_sigreturn +#define __stub_stty diff --git a/aarch64-none-linux-gnu/libc/usr/include/gnu/stubs.h b/aarch64-none-linux-gnu/libc/usr/include/gnu/stubs.h new file mode 100644 index 0000000..02e5f41 --- /dev/null +++ b/aarch64-none-linux-gnu/libc/usr/include/gnu/stubs.h @@ -0,0 +1,12 @@ +/* This file is automatically generated. + This file selects the right generated file of `__stub_FUNCTION' macros + based on the architecture being compiled for. */ + +#include <bits/wordsize.h> + +#if !defined __AARCH64EB__ +# include <gnu/stubs-lp64.h> +#endif +#if defined __AARCH64EB__ +# include <gnu/stubs-lp64_be.h> +#endif |