about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/m68k/coldfire
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/m68k/coldfire')
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/atomic-machine.h109
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist10
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist2
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist5
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist2133
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist8
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist10
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist432
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist122
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist228
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist93
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist42
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist41
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist7
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions1
-rw-r--r--sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h29
16 files changed, 0 insertions, 3272 deletions
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/atomic-machine.h b/sysdeps/unix/sysv/linux/m68k/coldfire/atomic-machine.h
deleted file mode 100644
index 1daac514a9..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/atomic-machine.h
+++ /dev/null
@@ -1,109 +0,0 @@
-/* Copyright (C) 2010-2017 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-   Contributed by Maxim Kuvyrkov <maxim@codesourcery.com>, 2010.
-
-   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
-   <http://www.gnu.org/licenses/>.  */
-
-#ifndef _ATOMIC_MACHINE_H
-#define _ATOMIC_MACHINE_H	1
-
-#include <stdint.h>
-#include <sysdep.h>
-#include <m68k-vdso.h>
-
-/* Coldfire has no atomic compare-and-exchange operation, but the
-   kernel provides userspace atomicity operations.  Use them.  */
-
-typedef int32_t atomic32_t;
-typedef uint32_t uatomic32_t;
-typedef int_fast32_t atomic_fast32_t;
-typedef uint_fast32_t uatomic_fast32_t;
-
-typedef intptr_t atomicptr_t;
-typedef uintptr_t uatomicptr_t;
-typedef intmax_t atomic_max_t;
-typedef uintmax_t uatomic_max_t;
-
-#define __HAVE_64B_ATOMICS 0
-#define USE_ATOMIC_COMPILER_BUILTINS 0
-
-/* XXX Is this actually correct?  */
-#define ATOMIC_EXCHANGE_USES_CAS 1
-
-/* The only basic operation needed is compare and exchange.  */
-/* For ColdFire we'll have to trap into the kernel mode anyway,
-   so trap from the library rather then from the kernel wrapper.  */
-#ifdef SHARED
-# define atomic_compare_and_exchange_val_acq(mem, newval, oldval)	\
-  ({									\
-    /* Use temporary variables to workaround call-clobberness of 	\
-       the registers.  */						\
-    __typeof (mem) _mem = mem;						\
-    __typeof (oldval) _oldval = oldval;					\
-    __typeof (newval) _newval = newval;					\
-    register uint32_t *_a0 asm ("a0") = (uint32_t *) _mem;		\
-    register uint32_t _d0 asm ("d0") = (uint32_t) _oldval;		\
-    register uint32_t _d1 asm ("d1") = (uint32_t) _newval;		\
-    void *tmp;								\
-									\
-    asm ("movel #_GLOBAL_OFFSET_TABLE_@GOTPC, %2\n\t"			\
-	 "lea (-6, %%pc, %2), %2\n\t"					\
-	 "movel " STR_M68K_VDSO_SYMBOL (__vdso_atomic_cmpxchg_32)	\
-	 "@GOT(%2), %2\n\t"						\
-	 "movel (%2), %2\n\t"						\
-	 "jsr (%2)\n\t"							\
-	 : "+d" (_d0), "+m" (*_a0), "=&a" (tmp)				\
-	 : "a" (_a0), "d" (_d1));					\
-    (__typeof (oldval)) _d0;						\
-  })
-#else
-# define atomic_compare_and_exchange_val_acq(mem, newval, oldval)	\
-  ({									\
-    /* Use temporary variables to workaround call-clobberness of 	\
-       the registers.  */						\
-    __typeof (mem) _mem = mem;						\
-    __typeof (oldval) _oldval = oldval;					\
-    __typeof (newval) _newval = newval;					\
-    register uint32_t _d0 asm ("d0") = SYS_ify (atomic_cmpxchg_32);	\
-    register uint32_t *_a0 asm ("a0") = (uint32_t *) _mem;		\
-    register uint32_t _d2 asm ("d2") = (uint32_t) _oldval;		\
-    register uint32_t _d1 asm ("d1") = (uint32_t) _newval;		\
-									\
-    asm ("trap #0"							\
-	 : "+d" (_d0), "+m" (*_a0)					\
-	 : "a" (_a0), "d" (_d2), "d" (_d1));				\
-    (__typeof (oldval)) _d0;						\
-  })
-#endif
-
-#ifdef SHARED
-# define atomic_full_barrier()					 \
-  ({								 \
-    void *tmp;							 \
-								 \
-    asm ("movel #_GLOBAL_OFFSET_TABLE_@GOTPC, %0\n\t"		 \
-	 "lea (-6, %pc, %0), %0\n\t"				 \
-	 "movel " STR_M68K_VDSO_SYMBOL (__vdso_atomic_barrier)	 \
-	 "@GOT(%0), %0\n\t"					 \
-	 "movel (%0), %0\n\t"					 \
-	 "jsr (%0)\n\t"						 \
-	 : "=&a" (tmp));					 \
-  })
-#else
-# define atomic_full_barrier()				\
-  (INTERNAL_SYSCALL (atomic_barrier, , 0), (void) 0)
-#endif
-
-#endif
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist
deleted file mode 100644
index cbf3a3cb2e..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist
+++ /dev/null
@@ -1,10 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 __libc_stack_end D 0x4
-GLIBC_2.4 __stack_chk_guard D 0x4
-GLIBC_2.4 __tls_get_addr F
-GLIBC_2.4 _dl_mcount F
-GLIBC_2.4 _r_debug D 0x14
-GLIBC_2.4 calloc F
-GLIBC_2.4 free F
-GLIBC_2.4 malloc F
-GLIBC_2.4 realloc F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist
deleted file mode 100644
index e80f213955..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist
+++ /dev/null
@@ -1,2 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 __ctype_get_mb_cur_max F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist
deleted file mode 100644
index df0c397ddc..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist
+++ /dev/null
@@ -1,5 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 gai_cancel F
-GLIBC_2.4 gai_error F
-GLIBC_2.4 gai_suspend F
-GLIBC_2.4 getaddrinfo_a F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist
deleted file mode 100644
index b594ebd7c6..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist
+++ /dev/null
@@ -1,2133 +0,0 @@
-GLIBC_2.10 GLIBC_2.10 A
-GLIBC_2.10 __cxa_at_quick_exit F
-GLIBC_2.10 __posix_getopt F
-GLIBC_2.10 accept4 F
-GLIBC_2.10 endsgent F
-GLIBC_2.10 fallocate F
-GLIBC_2.10 fgetsgent F
-GLIBC_2.10 fgetsgent_r F
-GLIBC_2.10 getsgent F
-GLIBC_2.10 getsgent_r F
-GLIBC_2.10 getsgnam F
-GLIBC_2.10 getsgnam_r F
-GLIBC_2.10 malloc_info F
-GLIBC_2.10 preadv F
-GLIBC_2.10 preadv64 F
-GLIBC_2.10 psiginfo F
-GLIBC_2.10 putsgent F
-GLIBC_2.10 pwritev F
-GLIBC_2.10 pwritev64 F
-GLIBC_2.10 quick_exit F
-GLIBC_2.10 register_printf_modifier F
-GLIBC_2.10 register_printf_specifier F
-GLIBC_2.10 register_printf_type F
-GLIBC_2.10 setsgent F
-GLIBC_2.10 sgetsgent F
-GLIBC_2.10 sgetsgent_r F
-GLIBC_2.11 GLIBC_2.11 A
-GLIBC_2.11 __longjmp_chk F
-GLIBC_2.11 execvpe F
-GLIBC_2.11 fallocate64 F
-GLIBC_2.11 mkostemps F
-GLIBC_2.11 mkostemps64 F
-GLIBC_2.11 mkstemps F
-GLIBC_2.11 mkstemps64 F
-GLIBC_2.12 GLIBC_2.12 A
-GLIBC_2.12 __m68k_read_tp F
-GLIBC_2.12 _sys_errlist D 0x21c
-GLIBC_2.12 _sys_nerr D 0x4
-GLIBC_2.12 ntp_gettimex F
-GLIBC_2.12 recvmmsg F
-GLIBC_2.12 sys_errlist D 0x21c
-GLIBC_2.12 sys_nerr D 0x4
-GLIBC_2.13 GLIBC_2.13 A
-GLIBC_2.13 fanotify_init F
-GLIBC_2.13 fanotify_mark F
-GLIBC_2.13 prlimit F
-GLIBC_2.13 prlimit64 F
-GLIBC_2.14 GLIBC_2.14 A
-GLIBC_2.14 clock_adjtime F
-GLIBC_2.14 name_to_handle_at F
-GLIBC_2.14 open_by_handle_at F
-GLIBC_2.14 sendmmsg F
-GLIBC_2.14 setns F
-GLIBC_2.14 syncfs F
-GLIBC_2.15 GLIBC_2.15 A
-GLIBC_2.15 __fdelt_chk F
-GLIBC_2.15 __fdelt_warn F
-GLIBC_2.15 posix_spawn F
-GLIBC_2.15 posix_spawnp F
-GLIBC_2.15 process_vm_readv F
-GLIBC_2.15 process_vm_writev F
-GLIBC_2.15 scandirat F
-GLIBC_2.15 scandirat64 F
-GLIBC_2.16 GLIBC_2.16 A
-GLIBC_2.16 __getauxval F
-GLIBC_2.16 __poll_chk F
-GLIBC_2.16 __ppoll_chk F
-GLIBC_2.16 aligned_alloc F
-GLIBC_2.16 c16rtomb F
-GLIBC_2.16 c32rtomb F
-GLIBC_2.16 getauxval F
-GLIBC_2.16 mbrtoc16 F
-GLIBC_2.16 mbrtoc32 F
-GLIBC_2.16 timespec_get F
-GLIBC_2.17 GLIBC_2.17 A
-GLIBC_2.17 clock_getcpuclockid F
-GLIBC_2.17 clock_getres F
-GLIBC_2.17 clock_gettime F
-GLIBC_2.17 clock_nanosleep F
-GLIBC_2.17 clock_settime F
-GLIBC_2.17 secure_getenv F
-GLIBC_2.18 GLIBC_2.18 A
-GLIBC_2.18 __cxa_thread_atexit_impl F
-GLIBC_2.22 GLIBC_2.22 A
-GLIBC_2.22 fmemopen F
-GLIBC_2.23 GLIBC_2.23 A
-GLIBC_2.23 fts64_children F
-GLIBC_2.23 fts64_close F
-GLIBC_2.23 fts64_open F
-GLIBC_2.23 fts64_read F
-GLIBC_2.23 fts64_set F
-GLIBC_2.24 GLIBC_2.24 A
-GLIBC_2.24 quick_exit F
-GLIBC_2.25 GLIBC_2.25 A
-GLIBC_2.25 __explicit_bzero_chk F
-GLIBC_2.25 explicit_bzero F
-GLIBC_2.25 getentropy F
-GLIBC_2.25 getrandom F
-GLIBC_2.25 strfromd F
-GLIBC_2.25 strfromf F
-GLIBC_2.25 strfroml F
-GLIBC_2.26 GLIBC_2.26 A
-GLIBC_2.26 preadv2 F
-GLIBC_2.26 preadv64v2 F
-GLIBC_2.26 pwritev2 F
-GLIBC_2.26 pwritev64v2 F
-GLIBC_2.26 reallocarray F
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 _Exit F
-GLIBC_2.4 _IO_2_1_stderr_ D 0x98
-GLIBC_2.4 _IO_2_1_stdin_ D 0x98
-GLIBC_2.4 _IO_2_1_stdout_ D 0x98
-GLIBC_2.4 _IO_adjust_column F
-GLIBC_2.4 _IO_adjust_wcolumn F
-GLIBC_2.4 _IO_default_doallocate F
-GLIBC_2.4 _IO_default_finish F
-GLIBC_2.4 _IO_default_pbackfail F
-GLIBC_2.4 _IO_default_uflow F
-GLIBC_2.4 _IO_default_xsgetn F
-GLIBC_2.4 _IO_default_xsputn F
-GLIBC_2.4 _IO_do_write F
-GLIBC_2.4 _IO_doallocbuf F
-GLIBC_2.4 _IO_fclose F
-GLIBC_2.4 _IO_fdopen F
-GLIBC_2.4 _IO_feof F
-GLIBC_2.4 _IO_ferror F
-GLIBC_2.4 _IO_fflush F
-GLIBC_2.4 _IO_fgetpos F
-GLIBC_2.4 _IO_fgetpos64 F
-GLIBC_2.4 _IO_fgets F
-GLIBC_2.4 _IO_file_attach F
-GLIBC_2.4 _IO_file_close F
-GLIBC_2.4 _IO_file_close_it F
-GLIBC_2.4 _IO_file_doallocate F
-GLIBC_2.4 _IO_file_finish F
-GLIBC_2.4 _IO_file_fopen F
-GLIBC_2.4 _IO_file_init F
-GLIBC_2.4 _IO_file_jumps D 0x54
-GLIBC_2.4 _IO_file_open F
-GLIBC_2.4 _IO_file_overflow F
-GLIBC_2.4 _IO_file_read F
-GLIBC_2.4 _IO_file_seek F
-GLIBC_2.4 _IO_file_seekoff F
-GLIBC_2.4 _IO_file_setbuf F
-GLIBC_2.4 _IO_file_stat F
-GLIBC_2.4 _IO_file_sync F
-GLIBC_2.4 _IO_file_underflow F
-GLIBC_2.4 _IO_file_write F
-GLIBC_2.4 _IO_file_xsputn F
-GLIBC_2.4 _IO_flockfile F
-GLIBC_2.4 _IO_flush_all F
-GLIBC_2.4 _IO_flush_all_linebuffered F
-GLIBC_2.4 _IO_fopen F
-GLIBC_2.4 _IO_fprintf F
-GLIBC_2.4 _IO_fputs F
-GLIBC_2.4 _IO_fread F
-GLIBC_2.4 _IO_free_backup_area F
-GLIBC_2.4 _IO_free_wbackup_area F
-GLIBC_2.4 _IO_fsetpos F
-GLIBC_2.4 _IO_fsetpos64 F
-GLIBC_2.4 _IO_ftell F
-GLIBC_2.4 _IO_ftrylockfile F
-GLIBC_2.4 _IO_funlockfile F
-GLIBC_2.4 _IO_fwrite F
-GLIBC_2.4 _IO_getc F
-GLIBC_2.4 _IO_getline F
-GLIBC_2.4 _IO_getline_info F
-GLIBC_2.4 _IO_gets F
-GLIBC_2.4 _IO_init F
-GLIBC_2.4 _IO_init_marker F
-GLIBC_2.4 _IO_init_wmarker F
-GLIBC_2.4 _IO_iter_begin F
-GLIBC_2.4 _IO_iter_end F
-GLIBC_2.4 _IO_iter_file F
-GLIBC_2.4 _IO_iter_next F
-GLIBC_2.4 _IO_least_wmarker F
-GLIBC_2.4 _IO_link_in F
-GLIBC_2.4 _IO_list_all D 0x4
-GLIBC_2.4 _IO_list_lock F
-GLIBC_2.4 _IO_list_resetlock F
-GLIBC_2.4 _IO_list_unlock F
-GLIBC_2.4 _IO_marker_delta F
-GLIBC_2.4 _IO_marker_difference F
-GLIBC_2.4 _IO_padn F
-GLIBC_2.4 _IO_peekc_locked F
-GLIBC_2.4 _IO_popen F
-GLIBC_2.4 _IO_printf F
-GLIBC_2.4 _IO_proc_close F
-GLIBC_2.4 _IO_proc_open F
-GLIBC_2.4 _IO_putc F
-GLIBC_2.4 _IO_puts F
-GLIBC_2.4 _IO_remove_marker F
-GLIBC_2.4 _IO_seekmark F
-GLIBC_2.4 _IO_seekoff F
-GLIBC_2.4 _IO_seekpos F
-GLIBC_2.4 _IO_seekwmark F
-GLIBC_2.4 _IO_setb F
-GLIBC_2.4 _IO_setbuffer F
-GLIBC_2.4 _IO_setvbuf F
-GLIBC_2.4 _IO_sgetn F
-GLIBC_2.4 _IO_sprintf F
-GLIBC_2.4 _IO_sputbackc F
-GLIBC_2.4 _IO_sputbackwc F
-GLIBC_2.4 _IO_sscanf F
-GLIBC_2.4 _IO_str_init_readonly F
-GLIBC_2.4 _IO_str_init_static F
-GLIBC_2.4 _IO_str_overflow F
-GLIBC_2.4 _IO_str_pbackfail F
-GLIBC_2.4 _IO_str_seekoff F
-GLIBC_2.4 _IO_str_underflow F
-GLIBC_2.4 _IO_sungetc F
-GLIBC_2.4 _IO_sungetwc F
-GLIBC_2.4 _IO_switch_to_get_mode F
-GLIBC_2.4 _IO_switch_to_main_wget_area F
-GLIBC_2.4 _IO_switch_to_wbackup_area F
-GLIBC_2.4 _IO_switch_to_wget_mode F
-GLIBC_2.4 _IO_un_link F
-GLIBC_2.4 _IO_ungetc F
-GLIBC_2.4 _IO_unsave_markers F
-GLIBC_2.4 _IO_unsave_wmarkers F
-GLIBC_2.4 _IO_vfprintf F
-GLIBC_2.4 _IO_vfscanf F
-GLIBC_2.4 _IO_vsprintf F
-GLIBC_2.4 _IO_wdefault_doallocate F
-GLIBC_2.4 _IO_wdefault_finish F
-GLIBC_2.4 _IO_wdefault_pbackfail F
-GLIBC_2.4 _IO_wdefault_uflow F
-GLIBC_2.4 _IO_wdefault_xsgetn F
-GLIBC_2.4 _IO_wdefault_xsputn F
-GLIBC_2.4 _IO_wdo_write F
-GLIBC_2.4 _IO_wdoallocbuf F
-GLIBC_2.4 _IO_wfile_jumps D 0x54
-GLIBC_2.4 _IO_wfile_overflow F
-GLIBC_2.4 _IO_wfile_seekoff F
-GLIBC_2.4 _IO_wfile_sync F
-GLIBC_2.4 _IO_wfile_underflow F
-GLIBC_2.4 _IO_wfile_xsputn F
-GLIBC_2.4 _IO_wmarker_delta F
-GLIBC_2.4 _IO_wsetb F
-GLIBC_2.4 ___brk_addr D 0x4
-GLIBC_2.4 __adjtimex F
-GLIBC_2.4 __after_morecore_hook D 0x4
-GLIBC_2.4 __argz_count F
-GLIBC_2.4 __argz_next F
-GLIBC_2.4 __argz_stringify F
-GLIBC_2.4 __asprintf F
-GLIBC_2.4 __assert F
-GLIBC_2.4 __assert_fail F
-GLIBC_2.4 __assert_perror_fail F
-GLIBC_2.4 __backtrace F
-GLIBC_2.4 __backtrace_symbols F
-GLIBC_2.4 __backtrace_symbols_fd F
-GLIBC_2.4 __bsd_getpgrp F
-GLIBC_2.4 __bzero F
-GLIBC_2.4 __check_rhosts_file D 0x4
-GLIBC_2.4 __chk_fail F
-GLIBC_2.4 __clone F
-GLIBC_2.4 __close F
-GLIBC_2.4 __cmsg_nxthdr F
-GLIBC_2.4 __confstr_chk F
-GLIBC_2.4 __connect F
-GLIBC_2.4 __ctype_b_loc F
-GLIBC_2.4 __ctype_get_mb_cur_max F
-GLIBC_2.4 __ctype_tolower_loc F
-GLIBC_2.4 __ctype_toupper_loc F
-GLIBC_2.4 __curbrk D 0x4
-GLIBC_2.4 __cxa_atexit F
-GLIBC_2.4 __cxa_finalize F
-GLIBC_2.4 __cyg_profile_func_enter F
-GLIBC_2.4 __cyg_profile_func_exit F
-GLIBC_2.4 __daylight D 0x4
-GLIBC_2.4 __dcgettext F
-GLIBC_2.4 __default_morecore F
-GLIBC_2.4 __dgettext F
-GLIBC_2.4 __divdi3 F
-GLIBC_2.4 __dup2 F
-GLIBC_2.4 __duplocale F
-GLIBC_2.4 __endmntent F
-GLIBC_2.4 __environ D 0x4
-GLIBC_2.4 __errno_location F
-GLIBC_2.4 __fbufsize F
-GLIBC_2.4 __fcntl F
-GLIBC_2.4 __ffs F
-GLIBC_2.4 __fgets_chk F
-GLIBC_2.4 __fgets_unlocked_chk F
-GLIBC_2.4 __fgetws_chk F
-GLIBC_2.4 __fgetws_unlocked_chk F
-GLIBC_2.4 __finite F
-GLIBC_2.4 __finitef F
-GLIBC_2.4 __finitel F
-GLIBC_2.4 __flbf F
-GLIBC_2.4 __fork F
-GLIBC_2.4 __fpending F
-GLIBC_2.4 __fprintf_chk F
-GLIBC_2.4 __fpu_control D 0x4
-GLIBC_2.4 __fpurge F
-GLIBC_2.4 __freadable F
-GLIBC_2.4 __freading F
-GLIBC_2.4 __free_hook D 0x4
-GLIBC_2.4 __freelocale F
-GLIBC_2.4 __fsetlocking F
-GLIBC_2.4 __fwprintf_chk F
-GLIBC_2.4 __fwritable F
-GLIBC_2.4 __fwriting F
-GLIBC_2.4 __fxstat F
-GLIBC_2.4 __fxstat64 F
-GLIBC_2.4 __fxstatat F
-GLIBC_2.4 __fxstatat64 F
-GLIBC_2.4 __getcwd_chk F
-GLIBC_2.4 __getdelim F
-GLIBC_2.4 __getdomainname_chk F
-GLIBC_2.4 __getgroups_chk F
-GLIBC_2.4 __gethostname_chk F
-GLIBC_2.4 __getlogin_r_chk F
-GLIBC_2.4 __getmntent_r F
-GLIBC_2.4 __getpagesize F
-GLIBC_2.4 __getpgid F
-GLIBC_2.4 __getpid F
-GLIBC_2.4 __gets_chk F
-GLIBC_2.4 __gettimeofday F
-GLIBC_2.4 __getwd_chk F
-GLIBC_2.4 __gmtime_r F
-GLIBC_2.4 __h_errno_location F
-GLIBC_2.4 __isalnum_l F
-GLIBC_2.4 __isalpha_l F
-GLIBC_2.4 __isascii_l F
-GLIBC_2.4 __isblank_l F
-GLIBC_2.4 __iscntrl_l F
-GLIBC_2.4 __isctype F
-GLIBC_2.4 __isdigit_l F
-GLIBC_2.4 __isgraph_l F
-GLIBC_2.4 __isinf F
-GLIBC_2.4 __isinff F
-GLIBC_2.4 __isinfl F
-GLIBC_2.4 __islower_l F
-GLIBC_2.4 __isnan F
-GLIBC_2.4 __isnanf F
-GLIBC_2.4 __isnanl F
-GLIBC_2.4 __isprint_l F
-GLIBC_2.4 __ispunct_l F
-GLIBC_2.4 __isspace_l F
-GLIBC_2.4 __isupper_l F
-GLIBC_2.4 __iswalnum_l F
-GLIBC_2.4 __iswalpha_l F
-GLIBC_2.4 __iswblank_l F
-GLIBC_2.4 __iswcntrl_l F
-GLIBC_2.4 __iswctype F
-GLIBC_2.4 __iswctype_l F
-GLIBC_2.4 __iswdigit_l F
-GLIBC_2.4 __iswgraph_l F
-GLIBC_2.4 __iswlower_l F
-GLIBC_2.4 __iswprint_l F
-GLIBC_2.4 __iswpunct_l F
-GLIBC_2.4 __iswspace_l F
-GLIBC_2.4 __iswupper_l F
-GLIBC_2.4 __iswxdigit_l F
-GLIBC_2.4 __isxdigit_l F
-GLIBC_2.4 __ivaliduser F
-GLIBC_2.4 __key_decryptsession_pk_LOCAL D 0x4
-GLIBC_2.4 __key_encryptsession_pk_LOCAL D 0x4
-GLIBC_2.4 __key_gendes_LOCAL D 0x4
-GLIBC_2.4 __libc_allocate_rtsig F
-GLIBC_2.4 __libc_calloc F
-GLIBC_2.4 __libc_current_sigrtmax F
-GLIBC_2.4 __libc_current_sigrtmin F
-GLIBC_2.4 __libc_free F
-GLIBC_2.4 __libc_freeres F
-GLIBC_2.4 __libc_init_first F
-GLIBC_2.4 __libc_mallinfo F
-GLIBC_2.4 __libc_malloc F
-GLIBC_2.4 __libc_mallopt F
-GLIBC_2.4 __libc_memalign F
-GLIBC_2.4 __libc_pvalloc F
-GLIBC_2.4 __libc_realloc F
-GLIBC_2.4 __libc_sa_len F
-GLIBC_2.4 __libc_start_main F
-GLIBC_2.4 __libc_valloc F
-GLIBC_2.4 __lseek F
-GLIBC_2.4 __lxstat F
-GLIBC_2.4 __lxstat64 F
-GLIBC_2.4 __malloc_hook D 0x4
-GLIBC_2.4 __malloc_initialize_hook D 0x4
-GLIBC_2.4 __mbrlen F
-GLIBC_2.4 __mbrtowc F
-GLIBC_2.4 __mbsnrtowcs_chk F
-GLIBC_2.4 __mbsrtowcs_chk F
-GLIBC_2.4 __mbstowcs_chk F
-GLIBC_2.4 __memalign_hook D 0x4
-GLIBC_2.4 __memcpy_chk F
-GLIBC_2.4 __memmove_chk F
-GLIBC_2.4 __mempcpy F
-GLIBC_2.4 __mempcpy_chk F
-GLIBC_2.4 __mempcpy_small F
-GLIBC_2.4 __memset_chk F
-GLIBC_2.4 __moddi3 F
-GLIBC_2.4 __monstartup F
-GLIBC_2.4 __morecore D 0x4
-GLIBC_2.4 __nanosleep F
-GLIBC_2.4 __newlocale F
-GLIBC_2.4 __nl_langinfo_l F
-GLIBC_2.4 __nss_configure_lookup F
-GLIBC_2.4 __nss_database_lookup F
-GLIBC_2.4 __nss_group_lookup F
-GLIBC_2.4 __nss_hostname_digits_dots F
-GLIBC_2.4 __nss_hosts_lookup F
-GLIBC_2.4 __nss_next F
-GLIBC_2.4 __nss_passwd_lookup F
-GLIBC_2.4 __open F
-GLIBC_2.4 __open64 F
-GLIBC_2.4 __overflow F
-GLIBC_2.4 __pipe F
-GLIBC_2.4 __poll F
-GLIBC_2.4 __pread64 F
-GLIBC_2.4 __pread64_chk F
-GLIBC_2.4 __pread_chk F
-GLIBC_2.4 __printf_chk F
-GLIBC_2.4 __printf_fp F
-GLIBC_2.4 __profile_frequency F
-GLIBC_2.4 __progname D 0x4
-GLIBC_2.4 __progname_full D 0x4
-GLIBC_2.4 __ptsname_r_chk F
-GLIBC_2.4 __pwrite64 F
-GLIBC_2.4 __rawmemchr F
-GLIBC_2.4 __rcmd_errstr D 0x4
-GLIBC_2.4 __read F
-GLIBC_2.4 __read_chk F
-GLIBC_2.4 __readlink_chk F
-GLIBC_2.4 __realloc_hook D 0x4
-GLIBC_2.4 __realpath_chk F
-GLIBC_2.4 __recv_chk F
-GLIBC_2.4 __recvfrom_chk F
-GLIBC_2.4 __register_atfork F
-GLIBC_2.4 __res_init F
-GLIBC_2.4 __res_nclose F
-GLIBC_2.4 __res_ninit F
-GLIBC_2.4 __res_randomid F
-GLIBC_2.4 __res_state F
-GLIBC_2.4 __rpc_thread_createerr F
-GLIBC_2.4 __rpc_thread_svc_fdset F
-GLIBC_2.4 __rpc_thread_svc_max_pollfd F
-GLIBC_2.4 __rpc_thread_svc_pollfd F
-GLIBC_2.4 __sbrk F
-GLIBC_2.4 __sched_get_priority_max F
-GLIBC_2.4 __sched_get_priority_min F
-GLIBC_2.4 __sched_getparam F
-GLIBC_2.4 __sched_getscheduler F
-GLIBC_2.4 __sched_setscheduler F
-GLIBC_2.4 __sched_yield F
-GLIBC_2.4 __secure_getenv F
-GLIBC_2.4 __select F
-GLIBC_2.4 __send F
-GLIBC_2.4 __setmntent F
-GLIBC_2.4 __setpgid F
-GLIBC_2.4 __sigaction F
-GLIBC_2.4 __sigaddset F
-GLIBC_2.4 __sigdelset F
-GLIBC_2.4 __sigismember F
-GLIBC_2.4 __signbit F
-GLIBC_2.4 __signbitf F
-GLIBC_2.4 __sigpause F
-GLIBC_2.4 __sigsetjmp F
-GLIBC_2.4 __sigsuspend F
-GLIBC_2.4 __snprintf_chk F
-GLIBC_2.4 __sprintf_chk F
-GLIBC_2.4 __stack_chk_fail F
-GLIBC_2.4 __statfs F
-GLIBC_2.4 __stpcpy F
-GLIBC_2.4 __stpcpy_chk F
-GLIBC_2.4 __stpcpy_small F
-GLIBC_2.4 __stpncpy F
-GLIBC_2.4 __stpncpy_chk F
-GLIBC_2.4 __strcasecmp F
-GLIBC_2.4 __strcasecmp_l F
-GLIBC_2.4 __strcasestr F
-GLIBC_2.4 __strcat_chk F
-GLIBC_2.4 __strcoll_l F
-GLIBC_2.4 __strcpy_chk F
-GLIBC_2.4 __strcpy_small F
-GLIBC_2.4 __strcspn_c1 F
-GLIBC_2.4 __strcspn_c2 F
-GLIBC_2.4 __strcspn_c3 F
-GLIBC_2.4 __strdup F
-GLIBC_2.4 __strerror_r F
-GLIBC_2.4 __strfmon_l F
-GLIBC_2.4 __strftime_l F
-GLIBC_2.4 __strncasecmp_l F
-GLIBC_2.4 __strncat_chk F
-GLIBC_2.4 __strncpy_chk F
-GLIBC_2.4 __strndup F
-GLIBC_2.4 __strpbrk_c2 F
-GLIBC_2.4 __strpbrk_c3 F
-GLIBC_2.4 __strsep_1c F
-GLIBC_2.4 __strsep_2c F
-GLIBC_2.4 __strsep_3c F
-GLIBC_2.4 __strsep_g F
-GLIBC_2.4 __strspn_c1 F
-GLIBC_2.4 __strspn_c2 F
-GLIBC_2.4 __strspn_c3 F
-GLIBC_2.4 __strtod_internal F
-GLIBC_2.4 __strtod_l F
-GLIBC_2.4 __strtof_internal F
-GLIBC_2.4 __strtof_l F
-GLIBC_2.4 __strtok_r F
-GLIBC_2.4 __strtok_r_1c F
-GLIBC_2.4 __strtol_internal F
-GLIBC_2.4 __strtol_l F
-GLIBC_2.4 __strtold_internal F
-GLIBC_2.4 __strtold_l F
-GLIBC_2.4 __strtoll_internal F
-GLIBC_2.4 __strtoll_l F
-GLIBC_2.4 __strtoul_internal F
-GLIBC_2.4 __strtoul_l F
-GLIBC_2.4 __strtoull_internal F
-GLIBC_2.4 __strtoull_l F
-GLIBC_2.4 __strverscmp F
-GLIBC_2.4 __strxfrm_l F
-GLIBC_2.4 __swprintf_chk F
-GLIBC_2.4 __sysconf F
-GLIBC_2.4 __sysctl F
-GLIBC_2.4 __syslog_chk F
-GLIBC_2.4 __sysv_signal F
-GLIBC_2.4 __timezone D 0x4
-GLIBC_2.4 __toascii_l F
-GLIBC_2.4 __tolower_l F
-GLIBC_2.4 __toupper_l F
-GLIBC_2.4 __towctrans F
-GLIBC_2.4 __towctrans_l F
-GLIBC_2.4 __towlower_l F
-GLIBC_2.4 __towupper_l F
-GLIBC_2.4 __ttyname_r_chk F
-GLIBC_2.4 __tzname D 0x8
-GLIBC_2.4 __udivdi3 F
-GLIBC_2.4 __uflow F
-GLIBC_2.4 __umoddi3 F
-GLIBC_2.4 __underflow F
-GLIBC_2.4 __uselocale F
-GLIBC_2.4 __vfork F
-GLIBC_2.4 __vfprintf_chk F
-GLIBC_2.4 __vfscanf F
-GLIBC_2.4 __vfwprintf_chk F
-GLIBC_2.4 __vprintf_chk F
-GLIBC_2.4 __vsnprintf F
-GLIBC_2.4 __vsnprintf_chk F
-GLIBC_2.4 __vsprintf_chk F
-GLIBC_2.4 __vsscanf F
-GLIBC_2.4 __vswprintf_chk F
-GLIBC_2.4 __vsyslog_chk F
-GLIBC_2.4 __vwprintf_chk F
-GLIBC_2.4 __wait F
-GLIBC_2.4 __waitpid F
-GLIBC_2.4 __wcpcpy_chk F
-GLIBC_2.4 __wcpncpy_chk F
-GLIBC_2.4 __wcrtomb_chk F
-GLIBC_2.4 __wcscasecmp_l F
-GLIBC_2.4 __wcscat_chk F
-GLIBC_2.4 __wcscoll_l F
-GLIBC_2.4 __wcscpy_chk F
-GLIBC_2.4 __wcsftime_l F
-GLIBC_2.4 __wcsncasecmp_l F
-GLIBC_2.4 __wcsncat_chk F
-GLIBC_2.4 __wcsncpy_chk F
-GLIBC_2.4 __wcsnrtombs_chk F
-GLIBC_2.4 __wcsrtombs_chk F
-GLIBC_2.4 __wcstod_internal F
-GLIBC_2.4 __wcstod_l F
-GLIBC_2.4 __wcstof_internal F
-GLIBC_2.4 __wcstof_l F
-GLIBC_2.4 __wcstol_internal F
-GLIBC_2.4 __wcstol_l F
-GLIBC_2.4 __wcstold_internal F
-GLIBC_2.4 __wcstold_l F
-GLIBC_2.4 __wcstoll_internal F
-GLIBC_2.4 __wcstoll_l F
-GLIBC_2.4 __wcstombs_chk F
-GLIBC_2.4 __wcstoul_internal F
-GLIBC_2.4 __wcstoul_l F
-GLIBC_2.4 __wcstoull_internal F
-GLIBC_2.4 __wcstoull_l F
-GLIBC_2.4 __wcsxfrm_l F
-GLIBC_2.4 __wctomb_chk F
-GLIBC_2.4 __wctrans_l F
-GLIBC_2.4 __wctype_l F
-GLIBC_2.4 __wmemcpy_chk F
-GLIBC_2.4 __wmemmove_chk F
-GLIBC_2.4 __wmempcpy_chk F
-GLIBC_2.4 __wmemset_chk F
-GLIBC_2.4 __woverflow F
-GLIBC_2.4 __wprintf_chk F
-GLIBC_2.4 __write F
-GLIBC_2.4 __wuflow F
-GLIBC_2.4 __wunderflow F
-GLIBC_2.4 __xmknod F
-GLIBC_2.4 __xmknodat F
-GLIBC_2.4 __xpg_basename F
-GLIBC_2.4 __xpg_sigpause F
-GLIBC_2.4 __xpg_strerror_r F
-GLIBC_2.4 __xstat F
-GLIBC_2.4 __xstat64 F
-GLIBC_2.4 _authenticate F
-GLIBC_2.4 _dl_mcount_wrapper F
-GLIBC_2.4 _dl_mcount_wrapper_check F
-GLIBC_2.4 _environ D 0x4
-GLIBC_2.4 _exit F
-GLIBC_2.4 _flushlbf F
-GLIBC_2.4 _libc_intl_domainname D 0x5
-GLIBC_2.4 _longjmp F
-GLIBC_2.4 _mcleanup F
-GLIBC_2.4 _mcount F
-GLIBC_2.4 _nl_default_dirname D 0x12
-GLIBC_2.4 _nl_domain_bindings D 0x4
-GLIBC_2.4 _nl_msg_cat_cntr D 0x4
-GLIBC_2.4 _null_auth D 0xc
-GLIBC_2.4 _obstack_allocated_p F
-GLIBC_2.4 _obstack_begin F
-GLIBC_2.4 _obstack_begin_1 F
-GLIBC_2.4 _obstack_free F
-GLIBC_2.4 _obstack_memory_used F
-GLIBC_2.4 _obstack_newchunk F
-GLIBC_2.4 _res D 0x1fe
-GLIBC_2.4 _res_hconf D 0x30
-GLIBC_2.4 _rpc_dtablesize F
-GLIBC_2.4 _seterr_reply F
-GLIBC_2.4 _setjmp F
-GLIBC_2.4 _sys_errlist D 0x210
-GLIBC_2.4 _sys_nerr D 0x4
-GLIBC_2.4 _sys_siglist D 0x104
-GLIBC_2.4 _tolower F
-GLIBC_2.4 _toupper F
-GLIBC_2.4 a64l F
-GLIBC_2.4 abort F
-GLIBC_2.4 abs F
-GLIBC_2.4 accept F
-GLIBC_2.4 access F
-GLIBC_2.4 acct F
-GLIBC_2.4 addmntent F
-GLIBC_2.4 addseverity F
-GLIBC_2.4 adjtime F
-GLIBC_2.4 adjtimex F
-GLIBC_2.4 advance F
-GLIBC_2.4 alarm F
-GLIBC_2.4 alphasort F
-GLIBC_2.4 alphasort64 F
-GLIBC_2.4 argp_err_exit_status D 0x4
-GLIBC_2.4 argp_error F
-GLIBC_2.4 argp_failure F
-GLIBC_2.4 argp_help F
-GLIBC_2.4 argp_parse F
-GLIBC_2.4 argp_program_bug_address D 0x4
-GLIBC_2.4 argp_program_version D 0x4
-GLIBC_2.4 argp_program_version_hook D 0x4
-GLIBC_2.4 argp_state_help F
-GLIBC_2.4 argp_usage F
-GLIBC_2.4 argz_add F
-GLIBC_2.4 argz_add_sep F
-GLIBC_2.4 argz_append F
-GLIBC_2.4 argz_count F
-GLIBC_2.4 argz_create F
-GLIBC_2.4 argz_create_sep F
-GLIBC_2.4 argz_delete F
-GLIBC_2.4 argz_extract F
-GLIBC_2.4 argz_insert F
-GLIBC_2.4 argz_next F
-GLIBC_2.4 argz_replace F
-GLIBC_2.4 argz_stringify F
-GLIBC_2.4 asctime F
-GLIBC_2.4 asctime_r F
-GLIBC_2.4 asprintf F
-GLIBC_2.4 atof F
-GLIBC_2.4 atoi F
-GLIBC_2.4 atol F
-GLIBC_2.4 atoll F
-GLIBC_2.4 authdes_create F
-GLIBC_2.4 authdes_getucred F
-GLIBC_2.4 authdes_pk_create F
-GLIBC_2.4 authnone_create F
-GLIBC_2.4 authunix_create F
-GLIBC_2.4 authunix_create_default F
-GLIBC_2.4 backtrace F
-GLIBC_2.4 backtrace_symbols F
-GLIBC_2.4 backtrace_symbols_fd F
-GLIBC_2.4 basename F
-GLIBC_2.4 bcmp F
-GLIBC_2.4 bcopy F
-GLIBC_2.4 bdflush F
-GLIBC_2.4 bind F
-GLIBC_2.4 bind_textdomain_codeset F
-GLIBC_2.4 bindresvport F
-GLIBC_2.4 bindtextdomain F
-GLIBC_2.4 brk F
-GLIBC_2.4 bsd_signal F
-GLIBC_2.4 bsearch F
-GLIBC_2.4 btowc F
-GLIBC_2.4 bzero F
-GLIBC_2.4 cacheflush F
-GLIBC_2.4 calloc F
-GLIBC_2.4 callrpc F
-GLIBC_2.4 canonicalize_file_name F
-GLIBC_2.4 capget F
-GLIBC_2.4 capset F
-GLIBC_2.4 catclose F
-GLIBC_2.4 catgets F
-GLIBC_2.4 catopen F
-GLIBC_2.4 cbc_crypt F
-GLIBC_2.4 cfgetispeed F
-GLIBC_2.4 cfgetospeed F
-GLIBC_2.4 cfmakeraw F
-GLIBC_2.4 cfree F
-GLIBC_2.4 cfsetispeed F
-GLIBC_2.4 cfsetospeed F
-GLIBC_2.4 cfsetspeed F
-GLIBC_2.4 chdir F
-GLIBC_2.4 chflags F
-GLIBC_2.4 chmod F
-GLIBC_2.4 chown F
-GLIBC_2.4 chroot F
-GLIBC_2.4 clearenv F
-GLIBC_2.4 clearerr F
-GLIBC_2.4 clearerr_unlocked F
-GLIBC_2.4 clnt_broadcast F
-GLIBC_2.4 clnt_create F
-GLIBC_2.4 clnt_pcreateerror F
-GLIBC_2.4 clnt_perrno F
-GLIBC_2.4 clnt_perror F
-GLIBC_2.4 clnt_spcreateerror F
-GLIBC_2.4 clnt_sperrno F
-GLIBC_2.4 clnt_sperror F
-GLIBC_2.4 clntraw_create F
-GLIBC_2.4 clnttcp_create F
-GLIBC_2.4 clntudp_bufcreate F
-GLIBC_2.4 clntudp_create F
-GLIBC_2.4 clntunix_create F
-GLIBC_2.4 clock F
-GLIBC_2.4 clone F
-GLIBC_2.4 close F
-GLIBC_2.4 closedir F
-GLIBC_2.4 closelog F
-GLIBC_2.4 confstr F
-GLIBC_2.4 connect F
-GLIBC_2.4 copysign F
-GLIBC_2.4 copysignf F
-GLIBC_2.4 copysignl F
-GLIBC_2.4 creat F
-GLIBC_2.4 creat64 F
-GLIBC_2.4 create_module F
-GLIBC_2.4 ctermid F
-GLIBC_2.4 ctime F
-GLIBC_2.4 ctime_r F
-GLIBC_2.4 cuserid F
-GLIBC_2.4 daemon F
-GLIBC_2.4 daylight D 0x4
-GLIBC_2.4 dcgettext F
-GLIBC_2.4 dcngettext F
-GLIBC_2.4 delete_module F
-GLIBC_2.4 des_setparity F
-GLIBC_2.4 dgettext F
-GLIBC_2.4 difftime F
-GLIBC_2.4 dirfd F
-GLIBC_2.4 dirname F
-GLIBC_2.4 div F
-GLIBC_2.4 dl_iterate_phdr F
-GLIBC_2.4 dngettext F
-GLIBC_2.4 dprintf F
-GLIBC_2.4 drand48 F
-GLIBC_2.4 drand48_r F
-GLIBC_2.4 dup F
-GLIBC_2.4 dup2 F
-GLIBC_2.4 duplocale F
-GLIBC_2.4 dysize F
-GLIBC_2.4 eaccess F
-GLIBC_2.4 ecb_crypt F
-GLIBC_2.4 ecvt F
-GLIBC_2.4 ecvt_r F
-GLIBC_2.4 endaliasent F
-GLIBC_2.4 endfsent F
-GLIBC_2.4 endgrent F
-GLIBC_2.4 endhostent F
-GLIBC_2.4 endmntent F
-GLIBC_2.4 endnetent F
-GLIBC_2.4 endnetgrent F
-GLIBC_2.4 endprotoent F
-GLIBC_2.4 endpwent F
-GLIBC_2.4 endrpcent F
-GLIBC_2.4 endservent F
-GLIBC_2.4 endspent F
-GLIBC_2.4 endttyent F
-GLIBC_2.4 endusershell F
-GLIBC_2.4 endutent F
-GLIBC_2.4 endutxent F
-GLIBC_2.4 environ D 0x4
-GLIBC_2.4 envz_add F
-GLIBC_2.4 envz_entry F
-GLIBC_2.4 envz_get F
-GLIBC_2.4 envz_merge F
-GLIBC_2.4 envz_remove F
-GLIBC_2.4 envz_strip F
-GLIBC_2.4 epoll_create F
-GLIBC_2.4 epoll_ctl F
-GLIBC_2.4 epoll_wait F
-GLIBC_2.4 erand48 F
-GLIBC_2.4 erand48_r F
-GLIBC_2.4 err F
-GLIBC_2.4 error F
-GLIBC_2.4 error_at_line F
-GLIBC_2.4 error_message_count D 0x4
-GLIBC_2.4 error_one_per_line D 0x4
-GLIBC_2.4 error_print_progname D 0x4
-GLIBC_2.4 errx F
-GLIBC_2.4 ether_aton F
-GLIBC_2.4 ether_aton_r F
-GLIBC_2.4 ether_hostton F
-GLIBC_2.4 ether_line F
-GLIBC_2.4 ether_ntoa F
-GLIBC_2.4 ether_ntoa_r F
-GLIBC_2.4 ether_ntohost F
-GLIBC_2.4 euidaccess F
-GLIBC_2.4 execl F
-GLIBC_2.4 execle F
-GLIBC_2.4 execlp F
-GLIBC_2.4 execv F
-GLIBC_2.4 execve F
-GLIBC_2.4 execvp F
-GLIBC_2.4 exit F
-GLIBC_2.4 faccessat F
-GLIBC_2.4 fattach F
-GLIBC_2.4 fchdir F
-GLIBC_2.4 fchflags F
-GLIBC_2.4 fchmod F
-GLIBC_2.4 fchmodat F
-GLIBC_2.4 fchown F
-GLIBC_2.4 fchownat F
-GLIBC_2.4 fclose F
-GLIBC_2.4 fcloseall F
-GLIBC_2.4 fcntl F
-GLIBC_2.4 fcvt F
-GLIBC_2.4 fcvt_r F
-GLIBC_2.4 fdatasync F
-GLIBC_2.4 fdetach F
-GLIBC_2.4 fdopen F
-GLIBC_2.4 fdopendir F
-GLIBC_2.4 feof F
-GLIBC_2.4 feof_unlocked F
-GLIBC_2.4 ferror F
-GLIBC_2.4 ferror_unlocked F
-GLIBC_2.4 fexecve F
-GLIBC_2.4 fflush F
-GLIBC_2.4 fflush_unlocked F
-GLIBC_2.4 ffs F
-GLIBC_2.4 ffsl F
-GLIBC_2.4 ffsll F
-GLIBC_2.4 fgetc F
-GLIBC_2.4 fgetc_unlocked F
-GLIBC_2.4 fgetgrent F
-GLIBC_2.4 fgetgrent_r F
-GLIBC_2.4 fgetpos F
-GLIBC_2.4 fgetpos64 F
-GLIBC_2.4 fgetpwent F
-GLIBC_2.4 fgetpwent_r F
-GLIBC_2.4 fgets F
-GLIBC_2.4 fgets_unlocked F
-GLIBC_2.4 fgetspent F
-GLIBC_2.4 fgetspent_r F
-GLIBC_2.4 fgetwc F
-GLIBC_2.4 fgetwc_unlocked F
-GLIBC_2.4 fgetws F
-GLIBC_2.4 fgetws_unlocked F
-GLIBC_2.4 fgetxattr F
-GLIBC_2.4 fileno F
-GLIBC_2.4 fileno_unlocked F
-GLIBC_2.4 finite F
-GLIBC_2.4 finitef F
-GLIBC_2.4 finitel F
-GLIBC_2.4 flistxattr F
-GLIBC_2.4 flock F
-GLIBC_2.4 flockfile F
-GLIBC_2.4 fmemopen F
-GLIBC_2.4 fmtmsg F
-GLIBC_2.4 fnmatch F
-GLIBC_2.4 fopen F
-GLIBC_2.4 fopen64 F
-GLIBC_2.4 fopencookie F
-GLIBC_2.4 fork F
-GLIBC_2.4 fpathconf F
-GLIBC_2.4 fprintf F
-GLIBC_2.4 fputc F
-GLIBC_2.4 fputc_unlocked F
-GLIBC_2.4 fputs F
-GLIBC_2.4 fputs_unlocked F
-GLIBC_2.4 fputwc F
-GLIBC_2.4 fputwc_unlocked F
-GLIBC_2.4 fputws F
-GLIBC_2.4 fputws_unlocked F
-GLIBC_2.4 fread F
-GLIBC_2.4 fread_unlocked F
-GLIBC_2.4 free F
-GLIBC_2.4 freeaddrinfo F
-GLIBC_2.4 freeifaddrs F
-GLIBC_2.4 freelocale F
-GLIBC_2.4 fremovexattr F
-GLIBC_2.4 freopen F
-GLIBC_2.4 freopen64 F
-GLIBC_2.4 frexp F
-GLIBC_2.4 frexpf F
-GLIBC_2.4 frexpl F
-GLIBC_2.4 fscanf F
-GLIBC_2.4 fseek F
-GLIBC_2.4 fseeko F
-GLIBC_2.4 fseeko64 F
-GLIBC_2.4 fsetpos F
-GLIBC_2.4 fsetpos64 F
-GLIBC_2.4 fsetxattr F
-GLIBC_2.4 fstatfs F
-GLIBC_2.4 fstatfs64 F
-GLIBC_2.4 fstatvfs F
-GLIBC_2.4 fstatvfs64 F
-GLIBC_2.4 fsync F
-GLIBC_2.4 ftell F
-GLIBC_2.4 ftello F
-GLIBC_2.4 ftello64 F
-GLIBC_2.4 ftime F
-GLIBC_2.4 ftok F
-GLIBC_2.4 ftruncate F
-GLIBC_2.4 ftruncate64 F
-GLIBC_2.4 ftrylockfile F
-GLIBC_2.4 fts_children F
-GLIBC_2.4 fts_close F
-GLIBC_2.4 fts_open F
-GLIBC_2.4 fts_read F
-GLIBC_2.4 fts_set F
-GLIBC_2.4 ftw F
-GLIBC_2.4 ftw64 F
-GLIBC_2.4 funlockfile F
-GLIBC_2.4 futimes F
-GLIBC_2.4 futimesat F
-GLIBC_2.4 fwide F
-GLIBC_2.4 fwprintf F
-GLIBC_2.4 fwrite F
-GLIBC_2.4 fwrite_unlocked F
-GLIBC_2.4 fwscanf F
-GLIBC_2.4 gai_strerror F
-GLIBC_2.4 gcvt F
-GLIBC_2.4 get_avphys_pages F
-GLIBC_2.4 get_current_dir_name F
-GLIBC_2.4 get_kernel_syms F
-GLIBC_2.4 get_myaddress F
-GLIBC_2.4 get_nprocs F
-GLIBC_2.4 get_nprocs_conf F
-GLIBC_2.4 get_phys_pages F
-GLIBC_2.4 getaddrinfo F
-GLIBC_2.4 getaliasbyname F
-GLIBC_2.4 getaliasbyname_r F
-GLIBC_2.4 getaliasent F
-GLIBC_2.4 getaliasent_r F
-GLIBC_2.4 getc F
-GLIBC_2.4 getc_unlocked F
-GLIBC_2.4 getchar F
-GLIBC_2.4 getchar_unlocked F
-GLIBC_2.4 getcontext F
-GLIBC_2.4 getcwd F
-GLIBC_2.4 getdate F
-GLIBC_2.4 getdate_err D 0x4
-GLIBC_2.4 getdate_r F
-GLIBC_2.4 getdelim F
-GLIBC_2.4 getdirentries F
-GLIBC_2.4 getdirentries64 F
-GLIBC_2.4 getdomainname F
-GLIBC_2.4 getdtablesize F
-GLIBC_2.4 getegid F
-GLIBC_2.4 getenv F
-GLIBC_2.4 geteuid F
-GLIBC_2.4 getfsent F
-GLIBC_2.4 getfsfile F
-GLIBC_2.4 getfsspec F
-GLIBC_2.4 getgid F
-GLIBC_2.4 getgrent F
-GLIBC_2.4 getgrent_r F
-GLIBC_2.4 getgrgid F
-GLIBC_2.4 getgrgid_r F
-GLIBC_2.4 getgrnam F
-GLIBC_2.4 getgrnam_r F
-GLIBC_2.4 getgrouplist F
-GLIBC_2.4 getgroups F
-GLIBC_2.4 gethostbyaddr F
-GLIBC_2.4 gethostbyaddr_r F
-GLIBC_2.4 gethostbyname F
-GLIBC_2.4 gethostbyname2 F
-GLIBC_2.4 gethostbyname2_r F
-GLIBC_2.4 gethostbyname_r F
-GLIBC_2.4 gethostent F
-GLIBC_2.4 gethostent_r F
-GLIBC_2.4 gethostid F
-GLIBC_2.4 gethostname F
-GLIBC_2.4 getifaddrs F
-GLIBC_2.4 getipv4sourcefilter F
-GLIBC_2.4 getitimer F
-GLIBC_2.4 getline F
-GLIBC_2.4 getloadavg F
-GLIBC_2.4 getlogin F
-GLIBC_2.4 getlogin_r F
-GLIBC_2.4 getmntent F
-GLIBC_2.4 getmntent_r F
-GLIBC_2.4 getmsg F
-GLIBC_2.4 getnameinfo F
-GLIBC_2.4 getnetbyaddr F
-GLIBC_2.4 getnetbyaddr_r F
-GLIBC_2.4 getnetbyname F
-GLIBC_2.4 getnetbyname_r F
-GLIBC_2.4 getnetent F
-GLIBC_2.4 getnetent_r F
-GLIBC_2.4 getnetgrent F
-GLIBC_2.4 getnetgrent_r F
-GLIBC_2.4 getnetname F
-GLIBC_2.4 getopt F
-GLIBC_2.4 getopt_long F
-GLIBC_2.4 getopt_long_only F
-GLIBC_2.4 getpagesize F
-GLIBC_2.4 getpass F
-GLIBC_2.4 getpeername F
-GLIBC_2.4 getpgid F
-GLIBC_2.4 getpgrp F
-GLIBC_2.4 getpid F
-GLIBC_2.4 getpmsg F
-GLIBC_2.4 getppid F
-GLIBC_2.4 getpriority F
-GLIBC_2.4 getprotobyname F
-GLIBC_2.4 getprotobyname_r F
-GLIBC_2.4 getprotobynumber F
-GLIBC_2.4 getprotobynumber_r F
-GLIBC_2.4 getprotoent F
-GLIBC_2.4 getprotoent_r F
-GLIBC_2.4 getpt F
-GLIBC_2.4 getpublickey F
-GLIBC_2.4 getpw F
-GLIBC_2.4 getpwent F
-GLIBC_2.4 getpwent_r F
-GLIBC_2.4 getpwnam F
-GLIBC_2.4 getpwnam_r F
-GLIBC_2.4 getpwuid F
-GLIBC_2.4 getpwuid_r F
-GLIBC_2.4 getresgid F
-GLIBC_2.4 getresuid F
-GLIBC_2.4 getrlimit F
-GLIBC_2.4 getrlimit64 F
-GLIBC_2.4 getrpcbyname F
-GLIBC_2.4 getrpcbyname_r F
-GLIBC_2.4 getrpcbynumber F
-GLIBC_2.4 getrpcbynumber_r F
-GLIBC_2.4 getrpcent F
-GLIBC_2.4 getrpcent_r F
-GLIBC_2.4 getrpcport F
-GLIBC_2.4 getrusage F
-GLIBC_2.4 gets F
-GLIBC_2.4 getsecretkey F
-GLIBC_2.4 getservbyname F
-GLIBC_2.4 getservbyname_r F
-GLIBC_2.4 getservbyport F
-GLIBC_2.4 getservbyport_r F
-GLIBC_2.4 getservent F
-GLIBC_2.4 getservent_r F
-GLIBC_2.4 getsid F
-GLIBC_2.4 getsockname F
-GLIBC_2.4 getsockopt F
-GLIBC_2.4 getsourcefilter F
-GLIBC_2.4 getspent F
-GLIBC_2.4 getspent_r F
-GLIBC_2.4 getspnam F
-GLIBC_2.4 getspnam_r F
-GLIBC_2.4 getsubopt F
-GLIBC_2.4 gettext F
-GLIBC_2.4 gettimeofday F
-GLIBC_2.4 getttyent F
-GLIBC_2.4 getttynam F
-GLIBC_2.4 getuid F
-GLIBC_2.4 getusershell F
-GLIBC_2.4 getutent F
-GLIBC_2.4 getutent_r F
-GLIBC_2.4 getutid F
-GLIBC_2.4 getutid_r F
-GLIBC_2.4 getutline F
-GLIBC_2.4 getutline_r F
-GLIBC_2.4 getutmp F
-GLIBC_2.4 getutmpx F
-GLIBC_2.4 getutxent F
-GLIBC_2.4 getutxid F
-GLIBC_2.4 getutxline F
-GLIBC_2.4 getw F
-GLIBC_2.4 getwc F
-GLIBC_2.4 getwc_unlocked F
-GLIBC_2.4 getwchar F
-GLIBC_2.4 getwchar_unlocked F
-GLIBC_2.4 getwd F
-GLIBC_2.4 getxattr F
-GLIBC_2.4 glob F
-GLIBC_2.4 glob64 F
-GLIBC_2.4 glob_pattern_p F
-GLIBC_2.4 globfree F
-GLIBC_2.4 globfree64 F
-GLIBC_2.4 gmtime F
-GLIBC_2.4 gmtime_r F
-GLIBC_2.4 gnu_dev_major F
-GLIBC_2.4 gnu_dev_makedev F
-GLIBC_2.4 gnu_dev_minor F
-GLIBC_2.4 gnu_get_libc_release F
-GLIBC_2.4 gnu_get_libc_version F
-GLIBC_2.4 grantpt F
-GLIBC_2.4 group_member F
-GLIBC_2.4 gsignal F
-GLIBC_2.4 gtty F
-GLIBC_2.4 h_errlist D 0x14
-GLIBC_2.4 h_nerr D 0x4
-GLIBC_2.4 hasmntopt F
-GLIBC_2.4 hcreate F
-GLIBC_2.4 hcreate_r F
-GLIBC_2.4 hdestroy F
-GLIBC_2.4 hdestroy_r F
-GLIBC_2.4 herror F
-GLIBC_2.4 host2netname F
-GLIBC_2.4 hsearch F
-GLIBC_2.4 hsearch_r F
-GLIBC_2.4 hstrerror F
-GLIBC_2.4 htonl F
-GLIBC_2.4 htons F
-GLIBC_2.4 iconv F
-GLIBC_2.4 iconv_close F
-GLIBC_2.4 iconv_open F
-GLIBC_2.4 if_freenameindex F
-GLIBC_2.4 if_indextoname F
-GLIBC_2.4 if_nameindex F
-GLIBC_2.4 if_nametoindex F
-GLIBC_2.4 imaxabs F
-GLIBC_2.4 imaxdiv F
-GLIBC_2.4 in6addr_any D 0x10
-GLIBC_2.4 in6addr_loopback D 0x10
-GLIBC_2.4 index F
-GLIBC_2.4 inet6_option_alloc F
-GLIBC_2.4 inet6_option_append F
-GLIBC_2.4 inet6_option_find F
-GLIBC_2.4 inet6_option_init F
-GLIBC_2.4 inet6_option_next F
-GLIBC_2.4 inet6_option_space F
-GLIBC_2.4 inet_addr F
-GLIBC_2.4 inet_aton F
-GLIBC_2.4 inet_lnaof F
-GLIBC_2.4 inet_makeaddr F
-GLIBC_2.4 inet_netof F
-GLIBC_2.4 inet_network F
-GLIBC_2.4 inet_nsap_addr F
-GLIBC_2.4 inet_nsap_ntoa F
-GLIBC_2.4 inet_ntoa F
-GLIBC_2.4 inet_ntop F
-GLIBC_2.4 inet_pton F
-GLIBC_2.4 init_module F
-GLIBC_2.4 initgroups F
-GLIBC_2.4 initstate F
-GLIBC_2.4 initstate_r F
-GLIBC_2.4 innetgr F
-GLIBC_2.4 inotify_add_watch F
-GLIBC_2.4 inotify_init F
-GLIBC_2.4 inotify_rm_watch F
-GLIBC_2.4 insque F
-GLIBC_2.4 ioctl F
-GLIBC_2.4 iruserok F
-GLIBC_2.4 iruserok_af F
-GLIBC_2.4 isalnum F
-GLIBC_2.4 isalnum_l F
-GLIBC_2.4 isalpha F
-GLIBC_2.4 isalpha_l F
-GLIBC_2.4 isascii F
-GLIBC_2.4 isastream F
-GLIBC_2.4 isatty F
-GLIBC_2.4 isblank F
-GLIBC_2.4 isblank_l F
-GLIBC_2.4 iscntrl F
-GLIBC_2.4 iscntrl_l F
-GLIBC_2.4 isctype F
-GLIBC_2.4 isdigit F
-GLIBC_2.4 isdigit_l F
-GLIBC_2.4 isfdtype F
-GLIBC_2.4 isgraph F
-GLIBC_2.4 isgraph_l F
-GLIBC_2.4 isinf F
-GLIBC_2.4 isinff F
-GLIBC_2.4 isinfl F
-GLIBC_2.4 islower F
-GLIBC_2.4 islower_l F
-GLIBC_2.4 isnan F
-GLIBC_2.4 isnanf F
-GLIBC_2.4 isnanl F
-GLIBC_2.4 isprint F
-GLIBC_2.4 isprint_l F
-GLIBC_2.4 ispunct F
-GLIBC_2.4 ispunct_l F
-GLIBC_2.4 isspace F
-GLIBC_2.4 isspace_l F
-GLIBC_2.4 isupper F
-GLIBC_2.4 isupper_l F
-GLIBC_2.4 iswalnum F
-GLIBC_2.4 iswalnum_l F
-GLIBC_2.4 iswalpha F
-GLIBC_2.4 iswalpha_l F
-GLIBC_2.4 iswblank F
-GLIBC_2.4 iswblank_l F
-GLIBC_2.4 iswcntrl F
-GLIBC_2.4 iswcntrl_l F
-GLIBC_2.4 iswctype F
-GLIBC_2.4 iswctype_l F
-GLIBC_2.4 iswdigit F
-GLIBC_2.4 iswdigit_l F
-GLIBC_2.4 iswgraph F
-GLIBC_2.4 iswgraph_l F
-GLIBC_2.4 iswlower F
-GLIBC_2.4 iswlower_l F
-GLIBC_2.4 iswprint F
-GLIBC_2.4 iswprint_l F
-GLIBC_2.4 iswpunct F
-GLIBC_2.4 iswpunct_l F
-GLIBC_2.4 iswspace F
-GLIBC_2.4 iswspace_l F
-GLIBC_2.4 iswupper F
-GLIBC_2.4 iswupper_l F
-GLIBC_2.4 iswxdigit F
-GLIBC_2.4 iswxdigit_l F
-GLIBC_2.4 isxdigit F
-GLIBC_2.4 isxdigit_l F
-GLIBC_2.4 jrand48 F
-GLIBC_2.4 jrand48_r F
-GLIBC_2.4 key_decryptsession F
-GLIBC_2.4 key_decryptsession_pk F
-GLIBC_2.4 key_encryptsession F
-GLIBC_2.4 key_encryptsession_pk F
-GLIBC_2.4 key_gendes F
-GLIBC_2.4 key_get_conv F
-GLIBC_2.4 key_secretkey_is_set F
-GLIBC_2.4 key_setnet F
-GLIBC_2.4 key_setsecret F
-GLIBC_2.4 kill F
-GLIBC_2.4 killpg F
-GLIBC_2.4 klogctl F
-GLIBC_2.4 l64a F
-GLIBC_2.4 labs F
-GLIBC_2.4 lchmod F
-GLIBC_2.4 lchown F
-GLIBC_2.4 lckpwdf F
-GLIBC_2.4 lcong48 F
-GLIBC_2.4 lcong48_r F
-GLIBC_2.4 ldexp F
-GLIBC_2.4 ldexpf F
-GLIBC_2.4 ldexpl F
-GLIBC_2.4 ldiv F
-GLIBC_2.4 lfind F
-GLIBC_2.4 lgetxattr F
-GLIBC_2.4 link F
-GLIBC_2.4 linkat F
-GLIBC_2.4 listen F
-GLIBC_2.4 listxattr F
-GLIBC_2.4 llabs F
-GLIBC_2.4 lldiv F
-GLIBC_2.4 llistxattr F
-GLIBC_2.4 llseek F
-GLIBC_2.4 loc1 D 0x4
-GLIBC_2.4 loc2 D 0x4
-GLIBC_2.4 localeconv F
-GLIBC_2.4 localtime F
-GLIBC_2.4 localtime_r F
-GLIBC_2.4 lockf F
-GLIBC_2.4 lockf64 F
-GLIBC_2.4 locs D 0x4
-GLIBC_2.4 longjmp F
-GLIBC_2.4 lrand48 F
-GLIBC_2.4 lrand48_r F
-GLIBC_2.4 lremovexattr F
-GLIBC_2.4 lsearch F
-GLIBC_2.4 lseek F
-GLIBC_2.4 lseek64 F
-GLIBC_2.4 lsetxattr F
-GLIBC_2.4 lutimes F
-GLIBC_2.4 madvise F
-GLIBC_2.4 makecontext F
-GLIBC_2.4 mallinfo F
-GLIBC_2.4 malloc F
-GLIBC_2.4 malloc_get_state F
-GLIBC_2.4 malloc_set_state F
-GLIBC_2.4 malloc_stats F
-GLIBC_2.4 malloc_trim F
-GLIBC_2.4 malloc_usable_size F
-GLIBC_2.4 mallopt F
-GLIBC_2.4 mallwatch D 0x4
-GLIBC_2.4 mblen F
-GLIBC_2.4 mbrlen F
-GLIBC_2.4 mbrtowc F
-GLIBC_2.4 mbsinit F
-GLIBC_2.4 mbsnrtowcs F
-GLIBC_2.4 mbsrtowcs F
-GLIBC_2.4 mbstowcs F
-GLIBC_2.4 mbtowc F
-GLIBC_2.4 mcheck F
-GLIBC_2.4 mcheck_check_all F
-GLIBC_2.4 mcheck_pedantic F
-GLIBC_2.4 mcount F
-GLIBC_2.4 memalign F
-GLIBC_2.4 memccpy F
-GLIBC_2.4 memchr F
-GLIBC_2.4 memcmp F
-GLIBC_2.4 memcpy F
-GLIBC_2.4 memfrob F
-GLIBC_2.4 memmem F
-GLIBC_2.4 memmove F
-GLIBC_2.4 mempcpy F
-GLIBC_2.4 memrchr F
-GLIBC_2.4 memset F
-GLIBC_2.4 mincore F
-GLIBC_2.4 mkdir F
-GLIBC_2.4 mkdirat F
-GLIBC_2.4 mkdtemp F
-GLIBC_2.4 mkfifo F
-GLIBC_2.4 mkfifoat F
-GLIBC_2.4 mkstemp F
-GLIBC_2.4 mkstemp64 F
-GLIBC_2.4 mktemp F
-GLIBC_2.4 mktime F
-GLIBC_2.4 mlock F
-GLIBC_2.4 mlockall F
-GLIBC_2.4 mmap F
-GLIBC_2.4 mmap64 F
-GLIBC_2.4 modf F
-GLIBC_2.4 modff F
-GLIBC_2.4 modfl F
-GLIBC_2.4 moncontrol F
-GLIBC_2.4 monstartup F
-GLIBC_2.4 mount F
-GLIBC_2.4 mprobe F
-GLIBC_2.4 mprotect F
-GLIBC_2.4 mrand48 F
-GLIBC_2.4 mrand48_r F
-GLIBC_2.4 mremap F
-GLIBC_2.4 msgctl F
-GLIBC_2.4 msgget F
-GLIBC_2.4 msgrcv F
-GLIBC_2.4 msgsnd F
-GLIBC_2.4 msync F
-GLIBC_2.4 mtrace F
-GLIBC_2.4 munlock F
-GLIBC_2.4 munlockall F
-GLIBC_2.4 munmap F
-GLIBC_2.4 muntrace F
-GLIBC_2.4 nanosleep F
-GLIBC_2.4 netname2host F
-GLIBC_2.4 netname2user F
-GLIBC_2.4 newlocale F
-GLIBC_2.4 nfsservctl F
-GLIBC_2.4 nftw F
-GLIBC_2.4 nftw64 F
-GLIBC_2.4 ngettext F
-GLIBC_2.4 nice F
-GLIBC_2.4 nl_langinfo F
-GLIBC_2.4 nl_langinfo_l F
-GLIBC_2.4 nrand48 F
-GLIBC_2.4 nrand48_r F
-GLIBC_2.4 ntohl F
-GLIBC_2.4 ntohs F
-GLIBC_2.4 ntp_adjtime F
-GLIBC_2.4 ntp_gettime F
-GLIBC_2.4 obstack_alloc_failed_handler D 0x4
-GLIBC_2.4 obstack_exit_failure D 0x4
-GLIBC_2.4 obstack_free F
-GLIBC_2.4 obstack_printf F
-GLIBC_2.4 obstack_vprintf F
-GLIBC_2.4 on_exit F
-GLIBC_2.4 open F
-GLIBC_2.4 open64 F
-GLIBC_2.4 open_memstream F
-GLIBC_2.4 open_wmemstream F
-GLIBC_2.4 openat F
-GLIBC_2.4 openat64 F
-GLIBC_2.4 opendir F
-GLIBC_2.4 openlog F
-GLIBC_2.4 optarg D 0x4
-GLIBC_2.4 opterr D 0x4
-GLIBC_2.4 optind D 0x4
-GLIBC_2.4 optopt D 0x4
-GLIBC_2.4 parse_printf_format F
-GLIBC_2.4 passwd2des F
-GLIBC_2.4 pathconf F
-GLIBC_2.4 pause F
-GLIBC_2.4 pclose F
-GLIBC_2.4 perror F
-GLIBC_2.4 personality F
-GLIBC_2.4 pipe F
-GLIBC_2.4 pivot_root F
-GLIBC_2.4 pmap_getmaps F
-GLIBC_2.4 pmap_getport F
-GLIBC_2.4 pmap_rmtcall F
-GLIBC_2.4 pmap_set F
-GLIBC_2.4 pmap_unset F
-GLIBC_2.4 poll F
-GLIBC_2.4 popen F
-GLIBC_2.4 posix_fadvise F
-GLIBC_2.4 posix_fadvise64 F
-GLIBC_2.4 posix_fallocate F
-GLIBC_2.4 posix_fallocate64 F
-GLIBC_2.4 posix_madvise F
-GLIBC_2.4 posix_memalign F
-GLIBC_2.4 posix_openpt F
-GLIBC_2.4 posix_spawn F
-GLIBC_2.4 posix_spawn_file_actions_addclose F
-GLIBC_2.4 posix_spawn_file_actions_adddup2 F
-GLIBC_2.4 posix_spawn_file_actions_addopen F
-GLIBC_2.4 posix_spawn_file_actions_destroy F
-GLIBC_2.4 posix_spawn_file_actions_init F
-GLIBC_2.4 posix_spawnattr_destroy F
-GLIBC_2.4 posix_spawnattr_getflags F
-GLIBC_2.4 posix_spawnattr_getpgroup F
-GLIBC_2.4 posix_spawnattr_getschedparam F
-GLIBC_2.4 posix_spawnattr_getschedpolicy F
-GLIBC_2.4 posix_spawnattr_getsigdefault F
-GLIBC_2.4 posix_spawnattr_getsigmask F
-GLIBC_2.4 posix_spawnattr_init F
-GLIBC_2.4 posix_spawnattr_setflags F
-GLIBC_2.4 posix_spawnattr_setpgroup F
-GLIBC_2.4 posix_spawnattr_setschedparam F
-GLIBC_2.4 posix_spawnattr_setschedpolicy F
-GLIBC_2.4 posix_spawnattr_setsigdefault F
-GLIBC_2.4 posix_spawnattr_setsigmask F
-GLIBC_2.4 posix_spawnp F
-GLIBC_2.4 ppoll F
-GLIBC_2.4 prctl F
-GLIBC_2.4 pread F
-GLIBC_2.4 pread64 F
-GLIBC_2.4 printf F
-GLIBC_2.4 printf_size F
-GLIBC_2.4 printf_size_info F
-GLIBC_2.4 profil F
-GLIBC_2.4 program_invocation_name D 0x4
-GLIBC_2.4 program_invocation_short_name D 0x4
-GLIBC_2.4 pselect F
-GLIBC_2.4 psignal F
-GLIBC_2.4 pthread_attr_destroy F
-GLIBC_2.4 pthread_attr_getdetachstate F
-GLIBC_2.4 pthread_attr_getinheritsched F
-GLIBC_2.4 pthread_attr_getschedparam F
-GLIBC_2.4 pthread_attr_getschedpolicy F
-GLIBC_2.4 pthread_attr_getscope F
-GLIBC_2.4 pthread_attr_init F
-GLIBC_2.4 pthread_attr_setdetachstate F
-GLIBC_2.4 pthread_attr_setinheritsched F
-GLIBC_2.4 pthread_attr_setschedparam F
-GLIBC_2.4 pthread_attr_setschedpolicy F
-GLIBC_2.4 pthread_attr_setscope F
-GLIBC_2.4 pthread_cond_broadcast F
-GLIBC_2.4 pthread_cond_destroy F
-GLIBC_2.4 pthread_cond_init F
-GLIBC_2.4 pthread_cond_signal F
-GLIBC_2.4 pthread_cond_timedwait F
-GLIBC_2.4 pthread_cond_wait F
-GLIBC_2.4 pthread_condattr_destroy F
-GLIBC_2.4 pthread_condattr_init F
-GLIBC_2.4 pthread_equal F
-GLIBC_2.4 pthread_exit F
-GLIBC_2.4 pthread_getschedparam F
-GLIBC_2.4 pthread_mutex_destroy F
-GLIBC_2.4 pthread_mutex_init F
-GLIBC_2.4 pthread_mutex_lock F
-GLIBC_2.4 pthread_mutex_unlock F
-GLIBC_2.4 pthread_self F
-GLIBC_2.4 pthread_setcancelstate F
-GLIBC_2.4 pthread_setcanceltype F
-GLIBC_2.4 pthread_setschedparam F
-GLIBC_2.4 ptrace F
-GLIBC_2.4 ptsname F
-GLIBC_2.4 ptsname_r F
-GLIBC_2.4 putc F
-GLIBC_2.4 putc_unlocked F
-GLIBC_2.4 putchar F
-GLIBC_2.4 putchar_unlocked F
-GLIBC_2.4 putenv F
-GLIBC_2.4 putgrent F
-GLIBC_2.4 putmsg F
-GLIBC_2.4 putpmsg F
-GLIBC_2.4 putpwent F
-GLIBC_2.4 puts F
-GLIBC_2.4 putspent F
-GLIBC_2.4 pututline F
-GLIBC_2.4 pututxline F
-GLIBC_2.4 putw F
-GLIBC_2.4 putwc F
-GLIBC_2.4 putwc_unlocked F
-GLIBC_2.4 putwchar F
-GLIBC_2.4 putwchar_unlocked F
-GLIBC_2.4 pvalloc F
-GLIBC_2.4 pwrite F
-GLIBC_2.4 pwrite64 F
-GLIBC_2.4 qecvt F
-GLIBC_2.4 qecvt_r F
-GLIBC_2.4 qfcvt F
-GLIBC_2.4 qfcvt_r F
-GLIBC_2.4 qgcvt F
-GLIBC_2.4 qsort F
-GLIBC_2.4 query_module F
-GLIBC_2.4 quotactl F
-GLIBC_2.4 raise F
-GLIBC_2.4 rand F
-GLIBC_2.4 rand_r F
-GLIBC_2.4 random F
-GLIBC_2.4 random_r F
-GLIBC_2.4 rawmemchr F
-GLIBC_2.4 rcmd F
-GLIBC_2.4 rcmd_af F
-GLIBC_2.4 re_comp F
-GLIBC_2.4 re_compile_fastmap F
-GLIBC_2.4 re_compile_pattern F
-GLIBC_2.4 re_exec F
-GLIBC_2.4 re_match F
-GLIBC_2.4 re_match_2 F
-GLIBC_2.4 re_search F
-GLIBC_2.4 re_search_2 F
-GLIBC_2.4 re_set_registers F
-GLIBC_2.4 re_set_syntax F
-GLIBC_2.4 re_syntax_options D 0x4
-GLIBC_2.4 read F
-GLIBC_2.4 readahead F
-GLIBC_2.4 readdir F
-GLIBC_2.4 readdir64 F
-GLIBC_2.4 readdir64_r F
-GLIBC_2.4 readdir_r F
-GLIBC_2.4 readlink F
-GLIBC_2.4 readlinkat F
-GLIBC_2.4 readv F
-GLIBC_2.4 realloc F
-GLIBC_2.4 realpath F
-GLIBC_2.4 reboot F
-GLIBC_2.4 recv F
-GLIBC_2.4 recvfrom F
-GLIBC_2.4 recvmsg F
-GLIBC_2.4 regcomp F
-GLIBC_2.4 regerror F
-GLIBC_2.4 regexec F
-GLIBC_2.4 regfree F
-GLIBC_2.4 register_printf_function F
-GLIBC_2.4 registerrpc F
-GLIBC_2.4 remap_file_pages F
-GLIBC_2.4 remove F
-GLIBC_2.4 removexattr F
-GLIBC_2.4 remque F
-GLIBC_2.4 rename F
-GLIBC_2.4 renameat F
-GLIBC_2.4 revoke F
-GLIBC_2.4 rewind F
-GLIBC_2.4 rewinddir F
-GLIBC_2.4 rexec F
-GLIBC_2.4 rexec_af F
-GLIBC_2.4 rexecoptions D 0x4
-GLIBC_2.4 rindex F
-GLIBC_2.4 rmdir F
-GLIBC_2.4 rpc_createerr D 0x10
-GLIBC_2.4 rpmatch F
-GLIBC_2.4 rresvport F
-GLIBC_2.4 rresvport_af F
-GLIBC_2.4 rtime F
-GLIBC_2.4 ruserok F
-GLIBC_2.4 ruserok_af F
-GLIBC_2.4 ruserpass F
-GLIBC_2.4 sbrk F
-GLIBC_2.4 scalbn F
-GLIBC_2.4 scalbnf F
-GLIBC_2.4 scalbnl F
-GLIBC_2.4 scandir F
-GLIBC_2.4 scandir64 F
-GLIBC_2.4 scanf F
-GLIBC_2.4 sched_get_priority_max F
-GLIBC_2.4 sched_get_priority_min F
-GLIBC_2.4 sched_getaffinity F
-GLIBC_2.4 sched_getparam F
-GLIBC_2.4 sched_getscheduler F
-GLIBC_2.4 sched_rr_get_interval F
-GLIBC_2.4 sched_setaffinity F
-GLIBC_2.4 sched_setparam F
-GLIBC_2.4 sched_setscheduler F
-GLIBC_2.4 sched_yield F
-GLIBC_2.4 seed48 F
-GLIBC_2.4 seed48_r F
-GLIBC_2.4 seekdir F
-GLIBC_2.4 select F
-GLIBC_2.4 semctl F
-GLIBC_2.4 semget F
-GLIBC_2.4 semop F
-GLIBC_2.4 semtimedop F
-GLIBC_2.4 send F
-GLIBC_2.4 sendfile F
-GLIBC_2.4 sendfile64 F
-GLIBC_2.4 sendmsg F
-GLIBC_2.4 sendto F
-GLIBC_2.4 setaliasent F
-GLIBC_2.4 setbuf F
-GLIBC_2.4 setbuffer F
-GLIBC_2.4 setcontext F
-GLIBC_2.4 setdomainname F
-GLIBC_2.4 setegid F
-GLIBC_2.4 setenv F
-GLIBC_2.4 seteuid F
-GLIBC_2.4 setfsent F
-GLIBC_2.4 setfsgid F
-GLIBC_2.4 setfsuid F
-GLIBC_2.4 setgid F
-GLIBC_2.4 setgrent F
-GLIBC_2.4 setgroups F
-GLIBC_2.4 sethostent F
-GLIBC_2.4 sethostid F
-GLIBC_2.4 sethostname F
-GLIBC_2.4 setipv4sourcefilter F
-GLIBC_2.4 setitimer F
-GLIBC_2.4 setjmp F
-GLIBC_2.4 setlinebuf F
-GLIBC_2.4 setlocale F
-GLIBC_2.4 setlogin F
-GLIBC_2.4 setlogmask F
-GLIBC_2.4 setmntent F
-GLIBC_2.4 setnetent F
-GLIBC_2.4 setnetgrent F
-GLIBC_2.4 setpgid F
-GLIBC_2.4 setpgrp F
-GLIBC_2.4 setpriority F
-GLIBC_2.4 setprotoent F
-GLIBC_2.4 setpwent F
-GLIBC_2.4 setregid F
-GLIBC_2.4 setresgid F
-GLIBC_2.4 setresuid F
-GLIBC_2.4 setreuid F
-GLIBC_2.4 setrlimit F
-GLIBC_2.4 setrlimit64 F
-GLIBC_2.4 setrpcent F
-GLIBC_2.4 setservent F
-GLIBC_2.4 setsid F
-GLIBC_2.4 setsockopt F
-GLIBC_2.4 setsourcefilter F
-GLIBC_2.4 setspent F
-GLIBC_2.4 setstate F
-GLIBC_2.4 setstate_r F
-GLIBC_2.4 settimeofday F
-GLIBC_2.4 setttyent F
-GLIBC_2.4 setuid F
-GLIBC_2.4 setusershell F
-GLIBC_2.4 setutent F
-GLIBC_2.4 setutxent F
-GLIBC_2.4 setvbuf F
-GLIBC_2.4 setxattr F
-GLIBC_2.4 sgetspent F
-GLIBC_2.4 sgetspent_r F
-GLIBC_2.4 shmat F
-GLIBC_2.4 shmctl F
-GLIBC_2.4 shmdt F
-GLIBC_2.4 shmget F
-GLIBC_2.4 shutdown F
-GLIBC_2.4 sigaction F
-GLIBC_2.4 sigaddset F
-GLIBC_2.4 sigaltstack F
-GLIBC_2.4 sigandset F
-GLIBC_2.4 sigblock F
-GLIBC_2.4 sigdelset F
-GLIBC_2.4 sigemptyset F
-GLIBC_2.4 sigfillset F
-GLIBC_2.4 siggetmask F
-GLIBC_2.4 sighold F
-GLIBC_2.4 sigignore F
-GLIBC_2.4 siginterrupt F
-GLIBC_2.4 sigisemptyset F
-GLIBC_2.4 sigismember F
-GLIBC_2.4 siglongjmp F
-GLIBC_2.4 signal F
-GLIBC_2.4 sigorset F
-GLIBC_2.4 sigpause F
-GLIBC_2.4 sigpending F
-GLIBC_2.4 sigprocmask F
-GLIBC_2.4 sigqueue F
-GLIBC_2.4 sigrelse F
-GLIBC_2.4 sigreturn F
-GLIBC_2.4 sigset F
-GLIBC_2.4 sigsetmask F
-GLIBC_2.4 sigstack F
-GLIBC_2.4 sigsuspend F
-GLIBC_2.4 sigtimedwait F
-GLIBC_2.4 sigvec F
-GLIBC_2.4 sigwait F
-GLIBC_2.4 sigwaitinfo F
-GLIBC_2.4 sleep F
-GLIBC_2.4 snprintf F
-GLIBC_2.4 sockatmark F
-GLIBC_2.4 socket F
-GLIBC_2.4 socketpair F
-GLIBC_2.4 sprintf F
-GLIBC_2.4 sprofil F
-GLIBC_2.4 srand F
-GLIBC_2.4 srand48 F
-GLIBC_2.4 srand48_r F
-GLIBC_2.4 srandom F
-GLIBC_2.4 srandom_r F
-GLIBC_2.4 sscanf F
-GLIBC_2.4 ssignal F
-GLIBC_2.4 sstk F
-GLIBC_2.4 statfs F
-GLIBC_2.4 statfs64 F
-GLIBC_2.4 statvfs F
-GLIBC_2.4 statvfs64 F
-GLIBC_2.4 stderr D 0x4
-GLIBC_2.4 stdin D 0x4
-GLIBC_2.4 stdout D 0x4
-GLIBC_2.4 step F
-GLIBC_2.4 stime F
-GLIBC_2.4 stpcpy F
-GLIBC_2.4 stpncpy F
-GLIBC_2.4 strcasecmp F
-GLIBC_2.4 strcasecmp_l F
-GLIBC_2.4 strcasestr F
-GLIBC_2.4 strcat F
-GLIBC_2.4 strchr F
-GLIBC_2.4 strchrnul F
-GLIBC_2.4 strcmp F
-GLIBC_2.4 strcoll F
-GLIBC_2.4 strcoll_l F
-GLIBC_2.4 strcpy F
-GLIBC_2.4 strcspn F
-GLIBC_2.4 strdup F
-GLIBC_2.4 strerror F
-GLIBC_2.4 strerror_r F
-GLIBC_2.4 strfmon F
-GLIBC_2.4 strfmon_l F
-GLIBC_2.4 strfry F
-GLIBC_2.4 strftime F
-GLIBC_2.4 strftime_l F
-GLIBC_2.4 strlen F
-GLIBC_2.4 strncasecmp F
-GLIBC_2.4 strncasecmp_l F
-GLIBC_2.4 strncat F
-GLIBC_2.4 strncmp F
-GLIBC_2.4 strncpy F
-GLIBC_2.4 strndup F
-GLIBC_2.4 strnlen F
-GLIBC_2.4 strpbrk F
-GLIBC_2.4 strptime F
-GLIBC_2.4 strptime_l F
-GLIBC_2.4 strrchr F
-GLIBC_2.4 strsep F
-GLIBC_2.4 strsignal F
-GLIBC_2.4 strspn F
-GLIBC_2.4 strstr F
-GLIBC_2.4 strtod F
-GLIBC_2.4 strtod_l F
-GLIBC_2.4 strtof F
-GLIBC_2.4 strtof_l F
-GLIBC_2.4 strtoimax F
-GLIBC_2.4 strtok F
-GLIBC_2.4 strtok_r F
-GLIBC_2.4 strtol F
-GLIBC_2.4 strtol_l F
-GLIBC_2.4 strtold F
-GLIBC_2.4 strtold_l F
-GLIBC_2.4 strtoll F
-GLIBC_2.4 strtoll_l F
-GLIBC_2.4 strtoq F
-GLIBC_2.4 strtoul F
-GLIBC_2.4 strtoul_l F
-GLIBC_2.4 strtoull F
-GLIBC_2.4 strtoull_l F
-GLIBC_2.4 strtoumax F
-GLIBC_2.4 strtouq F
-GLIBC_2.4 strverscmp F
-GLIBC_2.4 strxfrm F
-GLIBC_2.4 strxfrm_l F
-GLIBC_2.4 stty F
-GLIBC_2.4 svc_exit F
-GLIBC_2.4 svc_fdset D 0x80
-GLIBC_2.4 svc_getreq F
-GLIBC_2.4 svc_getreq_common F
-GLIBC_2.4 svc_getreq_poll F
-GLIBC_2.4 svc_getreqset F
-GLIBC_2.4 svc_max_pollfd D 0x4
-GLIBC_2.4 svc_pollfd D 0x4
-GLIBC_2.4 svc_register F
-GLIBC_2.4 svc_run F
-GLIBC_2.4 svc_sendreply F
-GLIBC_2.4 svc_unregister F
-GLIBC_2.4 svcauthdes_stats D 0xc
-GLIBC_2.4 svcerr_auth F
-GLIBC_2.4 svcerr_decode F
-GLIBC_2.4 svcerr_noproc F
-GLIBC_2.4 svcerr_noprog F
-GLIBC_2.4 svcerr_progvers F
-GLIBC_2.4 svcerr_systemerr F
-GLIBC_2.4 svcerr_weakauth F
-GLIBC_2.4 svcfd_create F
-GLIBC_2.4 svcraw_create F
-GLIBC_2.4 svctcp_create F
-GLIBC_2.4 svcudp_bufcreate F
-GLIBC_2.4 svcudp_create F
-GLIBC_2.4 svcudp_enablecache F
-GLIBC_2.4 svcunix_create F
-GLIBC_2.4 svcunixfd_create F
-GLIBC_2.4 swab F
-GLIBC_2.4 swapcontext F
-GLIBC_2.4 swapoff F
-GLIBC_2.4 swapon F
-GLIBC_2.4 swprintf F
-GLIBC_2.4 swscanf F
-GLIBC_2.4 symlink F
-GLIBC_2.4 symlinkat F
-GLIBC_2.4 sync F
-GLIBC_2.4 sys_errlist D 0x210
-GLIBC_2.4 sys_nerr D 0x4
-GLIBC_2.4 sys_sigabbrev D 0x104
-GLIBC_2.4 sys_siglist D 0x104
-GLIBC_2.4 syscall F
-GLIBC_2.4 sysconf F
-GLIBC_2.4 sysctl F
-GLIBC_2.4 sysinfo F
-GLIBC_2.4 syslog F
-GLIBC_2.4 system F
-GLIBC_2.4 sysv_signal F
-GLIBC_2.4 tcdrain F
-GLIBC_2.4 tcflow F
-GLIBC_2.4 tcflush F
-GLIBC_2.4 tcgetattr F
-GLIBC_2.4 tcgetpgrp F
-GLIBC_2.4 tcgetsid F
-GLIBC_2.4 tcsendbreak F
-GLIBC_2.4 tcsetattr F
-GLIBC_2.4 tcsetpgrp F
-GLIBC_2.4 tdelete F
-GLIBC_2.4 tdestroy F
-GLIBC_2.4 telldir F
-GLIBC_2.4 tempnam F
-GLIBC_2.4 textdomain F
-GLIBC_2.4 tfind F
-GLIBC_2.4 time F
-GLIBC_2.4 timegm F
-GLIBC_2.4 timelocal F
-GLIBC_2.4 times F
-GLIBC_2.4 timezone D 0x4
-GLIBC_2.4 tmpfile F
-GLIBC_2.4 tmpfile64 F
-GLIBC_2.4 tmpnam F
-GLIBC_2.4 tmpnam_r F
-GLIBC_2.4 toascii F
-GLIBC_2.4 tolower F
-GLIBC_2.4 tolower_l F
-GLIBC_2.4 toupper F
-GLIBC_2.4 toupper_l F
-GLIBC_2.4 towctrans F
-GLIBC_2.4 towctrans_l F
-GLIBC_2.4 towlower F
-GLIBC_2.4 towlower_l F
-GLIBC_2.4 towupper F
-GLIBC_2.4 towupper_l F
-GLIBC_2.4 tr_break F
-GLIBC_2.4 truncate F
-GLIBC_2.4 truncate64 F
-GLIBC_2.4 tsearch F
-GLIBC_2.4 ttyname F
-GLIBC_2.4 ttyname_r F
-GLIBC_2.4 ttyslot F
-GLIBC_2.4 twalk F
-GLIBC_2.4 tzname D 0x8
-GLIBC_2.4 tzset F
-GLIBC_2.4 ualarm F
-GLIBC_2.4 ulckpwdf F
-GLIBC_2.4 ulimit F
-GLIBC_2.4 umask F
-GLIBC_2.4 umount F
-GLIBC_2.4 umount2 F
-GLIBC_2.4 uname F
-GLIBC_2.4 ungetc F
-GLIBC_2.4 ungetwc F
-GLIBC_2.4 unlink F
-GLIBC_2.4 unlinkat F
-GLIBC_2.4 unlockpt F
-GLIBC_2.4 unsetenv F
-GLIBC_2.4 unshare F
-GLIBC_2.4 updwtmp F
-GLIBC_2.4 updwtmpx F
-GLIBC_2.4 uselib F
-GLIBC_2.4 uselocale F
-GLIBC_2.4 user2netname F
-GLIBC_2.4 usleep F
-GLIBC_2.4 ustat F
-GLIBC_2.4 utime F
-GLIBC_2.4 utimes F
-GLIBC_2.4 utmpname F
-GLIBC_2.4 utmpxname F
-GLIBC_2.4 valloc F
-GLIBC_2.4 vasprintf F
-GLIBC_2.4 vdprintf F
-GLIBC_2.4 verr F
-GLIBC_2.4 verrx F
-GLIBC_2.4 versionsort F
-GLIBC_2.4 versionsort64 F
-GLIBC_2.4 vfork F
-GLIBC_2.4 vfprintf F
-GLIBC_2.4 vfscanf F
-GLIBC_2.4 vfwprintf F
-GLIBC_2.4 vfwscanf F
-GLIBC_2.4 vhangup F
-GLIBC_2.4 vlimit F
-GLIBC_2.4 vprintf F
-GLIBC_2.4 vscanf F
-GLIBC_2.4 vsnprintf F
-GLIBC_2.4 vsprintf F
-GLIBC_2.4 vsscanf F
-GLIBC_2.4 vswprintf F
-GLIBC_2.4 vswscanf F
-GLIBC_2.4 vsyslog F
-GLIBC_2.4 vtimes F
-GLIBC_2.4 vwarn F
-GLIBC_2.4 vwarnx F
-GLIBC_2.4 vwprintf F
-GLIBC_2.4 vwscanf F
-GLIBC_2.4 wait F
-GLIBC_2.4 wait3 F
-GLIBC_2.4 wait4 F
-GLIBC_2.4 waitid F
-GLIBC_2.4 waitpid F
-GLIBC_2.4 warn F
-GLIBC_2.4 warnx F
-GLIBC_2.4 wcpcpy F
-GLIBC_2.4 wcpncpy F
-GLIBC_2.4 wcrtomb F
-GLIBC_2.4 wcscasecmp F
-GLIBC_2.4 wcscasecmp_l F
-GLIBC_2.4 wcscat F
-GLIBC_2.4 wcschr F
-GLIBC_2.4 wcschrnul F
-GLIBC_2.4 wcscmp F
-GLIBC_2.4 wcscoll F
-GLIBC_2.4 wcscoll_l F
-GLIBC_2.4 wcscpy F
-GLIBC_2.4 wcscspn F
-GLIBC_2.4 wcsdup F
-GLIBC_2.4 wcsftime F
-GLIBC_2.4 wcsftime_l F
-GLIBC_2.4 wcslen F
-GLIBC_2.4 wcsncasecmp F
-GLIBC_2.4 wcsncasecmp_l F
-GLIBC_2.4 wcsncat F
-GLIBC_2.4 wcsncmp F
-GLIBC_2.4 wcsncpy F
-GLIBC_2.4 wcsnlen F
-GLIBC_2.4 wcsnrtombs F
-GLIBC_2.4 wcspbrk F
-GLIBC_2.4 wcsrchr F
-GLIBC_2.4 wcsrtombs F
-GLIBC_2.4 wcsspn F
-GLIBC_2.4 wcsstr F
-GLIBC_2.4 wcstod F
-GLIBC_2.4 wcstod_l F
-GLIBC_2.4 wcstof F
-GLIBC_2.4 wcstof_l F
-GLIBC_2.4 wcstoimax F
-GLIBC_2.4 wcstok F
-GLIBC_2.4 wcstol F
-GLIBC_2.4 wcstol_l F
-GLIBC_2.4 wcstold F
-GLIBC_2.4 wcstold_l F
-GLIBC_2.4 wcstoll F
-GLIBC_2.4 wcstoll_l F
-GLIBC_2.4 wcstombs F
-GLIBC_2.4 wcstoq F
-GLIBC_2.4 wcstoul F
-GLIBC_2.4 wcstoul_l F
-GLIBC_2.4 wcstoull F
-GLIBC_2.4 wcstoull_l F
-GLIBC_2.4 wcstoumax F
-GLIBC_2.4 wcstouq F
-GLIBC_2.4 wcswcs F
-GLIBC_2.4 wcswidth F
-GLIBC_2.4 wcsxfrm F
-GLIBC_2.4 wcsxfrm_l F
-GLIBC_2.4 wctob F
-GLIBC_2.4 wctomb F
-GLIBC_2.4 wctrans F
-GLIBC_2.4 wctrans_l F
-GLIBC_2.4 wctype F
-GLIBC_2.4 wctype_l F
-GLIBC_2.4 wcwidth F
-GLIBC_2.4 wmemchr F
-GLIBC_2.4 wmemcmp F
-GLIBC_2.4 wmemcpy F
-GLIBC_2.4 wmemmove F
-GLIBC_2.4 wmempcpy F
-GLIBC_2.4 wmemset F
-GLIBC_2.4 wordexp F
-GLIBC_2.4 wordfree F
-GLIBC_2.4 wprintf F
-GLIBC_2.4 write F
-GLIBC_2.4 writev F
-GLIBC_2.4 wscanf F
-GLIBC_2.4 xdecrypt F
-GLIBC_2.4 xdr_accepted_reply F
-GLIBC_2.4 xdr_array F
-GLIBC_2.4 xdr_authdes_cred F
-GLIBC_2.4 xdr_authdes_verf F
-GLIBC_2.4 xdr_authunix_parms F
-GLIBC_2.4 xdr_bool F
-GLIBC_2.4 xdr_bytes F
-GLIBC_2.4 xdr_callhdr F
-GLIBC_2.4 xdr_callmsg F
-GLIBC_2.4 xdr_char F
-GLIBC_2.4 xdr_cryptkeyarg F
-GLIBC_2.4 xdr_cryptkeyarg2 F
-GLIBC_2.4 xdr_cryptkeyres F
-GLIBC_2.4 xdr_des_block F
-GLIBC_2.4 xdr_double F
-GLIBC_2.4 xdr_enum F
-GLIBC_2.4 xdr_float F
-GLIBC_2.4 xdr_free F
-GLIBC_2.4 xdr_getcredres F
-GLIBC_2.4 xdr_hyper F
-GLIBC_2.4 xdr_int F
-GLIBC_2.4 xdr_int16_t F
-GLIBC_2.4 xdr_int32_t F
-GLIBC_2.4 xdr_int64_t F
-GLIBC_2.4 xdr_int8_t F
-GLIBC_2.4 xdr_key_netstarg F
-GLIBC_2.4 xdr_key_netstres F
-GLIBC_2.4 xdr_keybuf F
-GLIBC_2.4 xdr_keystatus F
-GLIBC_2.4 xdr_long F
-GLIBC_2.4 xdr_longlong_t F
-GLIBC_2.4 xdr_netnamestr F
-GLIBC_2.4 xdr_netobj F
-GLIBC_2.4 xdr_opaque F
-GLIBC_2.4 xdr_opaque_auth F
-GLIBC_2.4 xdr_pmap F
-GLIBC_2.4 xdr_pmaplist F
-GLIBC_2.4 xdr_pointer F
-GLIBC_2.4 xdr_quad_t F
-GLIBC_2.4 xdr_reference F
-GLIBC_2.4 xdr_rejected_reply F
-GLIBC_2.4 xdr_replymsg F
-GLIBC_2.4 xdr_rmtcall_args F
-GLIBC_2.4 xdr_rmtcallres F
-GLIBC_2.4 xdr_short F
-GLIBC_2.4 xdr_sizeof F
-GLIBC_2.4 xdr_string F
-GLIBC_2.4 xdr_u_char F
-GLIBC_2.4 xdr_u_hyper F
-GLIBC_2.4 xdr_u_int F
-GLIBC_2.4 xdr_u_long F
-GLIBC_2.4 xdr_u_longlong_t F
-GLIBC_2.4 xdr_u_quad_t F
-GLIBC_2.4 xdr_u_short F
-GLIBC_2.4 xdr_uint16_t F
-GLIBC_2.4 xdr_uint32_t F
-GLIBC_2.4 xdr_uint64_t F
-GLIBC_2.4 xdr_uint8_t F
-GLIBC_2.4 xdr_union F
-GLIBC_2.4 xdr_unixcred F
-GLIBC_2.4 xdr_vector F
-GLIBC_2.4 xdr_void F
-GLIBC_2.4 xdr_wrapstring F
-GLIBC_2.4 xdrmem_create F
-GLIBC_2.4 xdrrec_create F
-GLIBC_2.4 xdrrec_endofrecord F
-GLIBC_2.4 xdrrec_eof F
-GLIBC_2.4 xdrrec_skiprecord F
-GLIBC_2.4 xdrstdio_create F
-GLIBC_2.4 xencrypt F
-GLIBC_2.4 xprt_register F
-GLIBC_2.4 xprt_unregister F
-GLIBC_2.5 GLIBC_2.5 A
-GLIBC_2.5 __readlinkat_chk F
-GLIBC_2.5 inet6_opt_append F
-GLIBC_2.5 inet6_opt_find F
-GLIBC_2.5 inet6_opt_finish F
-GLIBC_2.5 inet6_opt_get_val F
-GLIBC_2.5 inet6_opt_init F
-GLIBC_2.5 inet6_opt_next F
-GLIBC_2.5 inet6_opt_set_val F
-GLIBC_2.5 inet6_rth_add F
-GLIBC_2.5 inet6_rth_getaddr F
-GLIBC_2.5 inet6_rth_init F
-GLIBC_2.5 inet6_rth_reverse F
-GLIBC_2.5 inet6_rth_segments F
-GLIBC_2.5 inet6_rth_space F
-GLIBC_2.5 splice F
-GLIBC_2.5 tee F
-GLIBC_2.5 vmsplice F
-GLIBC_2.6 GLIBC_2.6 A
-GLIBC_2.6 __sched_cpucount F
-GLIBC_2.6 epoll_pwait F
-GLIBC_2.6 futimens F
-GLIBC_2.6 sched_getcpu F
-GLIBC_2.6 strerror_l F
-GLIBC_2.6 sync_file_range F
-GLIBC_2.6 utimensat F
-GLIBC_2.7 GLIBC_2.7 A
-GLIBC_2.7 __fread_chk F
-GLIBC_2.7 __fread_unlocked_chk F
-GLIBC_2.7 __isoc99_fscanf F
-GLIBC_2.7 __isoc99_fwscanf F
-GLIBC_2.7 __isoc99_scanf F
-GLIBC_2.7 __isoc99_sscanf F
-GLIBC_2.7 __isoc99_swscanf F
-GLIBC_2.7 __isoc99_vfscanf F
-GLIBC_2.7 __isoc99_vfwscanf F
-GLIBC_2.7 __isoc99_vscanf F
-GLIBC_2.7 __isoc99_vsscanf F
-GLIBC_2.7 __isoc99_vswscanf F
-GLIBC_2.7 __isoc99_vwscanf F
-GLIBC_2.7 __isoc99_wscanf F
-GLIBC_2.7 __open64_2 F
-GLIBC_2.7 __open_2 F
-GLIBC_2.7 __openat64_2 F
-GLIBC_2.7 __openat_2 F
-GLIBC_2.7 __sched_cpualloc F
-GLIBC_2.7 __sched_cpufree F
-GLIBC_2.7 eventfd F
-GLIBC_2.7 eventfd_read F
-GLIBC_2.7 eventfd_write F
-GLIBC_2.7 mkostemp F
-GLIBC_2.7 mkostemp64 F
-GLIBC_2.7 signalfd F
-GLIBC_2.8 GLIBC_2.8 A
-GLIBC_2.8 __asprintf_chk F
-GLIBC_2.8 __dprintf_chk F
-GLIBC_2.8 __obstack_printf_chk F
-GLIBC_2.8 __obstack_vprintf_chk F
-GLIBC_2.8 __vasprintf_chk F
-GLIBC_2.8 __vdprintf_chk F
-GLIBC_2.8 qsort_r F
-GLIBC_2.8 timerfd_create F
-GLIBC_2.8 timerfd_gettime F
-GLIBC_2.8 timerfd_settime F
-GLIBC_2.9 GLIBC_2.9 A
-GLIBC_2.9 dup3 F
-GLIBC_2.9 epoll_create1 F
-GLIBC_2.9 inotify_init1 F
-GLIBC_2.9 pipe2 F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist
deleted file mode 100644
index 04f1f02fa3..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist
+++ /dev/null
@@ -1,8 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 crypt F
-GLIBC_2.4 crypt_r F
-GLIBC_2.4 encrypt F
-GLIBC_2.4 encrypt_r F
-GLIBC_2.4 fcrypt F
-GLIBC_2.4 setkey F
-GLIBC_2.4 setkey_r F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist
deleted file mode 100644
index 89a750a0a3..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist
+++ /dev/null
@@ -1,10 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 dladdr F
-GLIBC_2.4 dladdr1 F
-GLIBC_2.4 dlclose F
-GLIBC_2.4 dlerror F
-GLIBC_2.4 dlinfo F
-GLIBC_2.4 dlmopen F
-GLIBC_2.4 dlopen F
-GLIBC_2.4 dlsym F
-GLIBC_2.4 dlvsym F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist
deleted file mode 100644
index d0c33d2a11..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist
+++ /dev/null
@@ -1,432 +0,0 @@
-GLIBC_2.15 GLIBC_2.15 A
-GLIBC_2.15 __acos_finite F
-GLIBC_2.15 __acosf_finite F
-GLIBC_2.15 __acosh_finite F
-GLIBC_2.15 __acoshf_finite F
-GLIBC_2.15 __asin_finite F
-GLIBC_2.15 __asinf_finite F
-GLIBC_2.15 __atan2_finite F
-GLIBC_2.15 __atan2f_finite F
-GLIBC_2.15 __atanh_finite F
-GLIBC_2.15 __atanhf_finite F
-GLIBC_2.15 __cosh_finite F
-GLIBC_2.15 __coshf_finite F
-GLIBC_2.15 __exp10_finite F
-GLIBC_2.15 __exp10f_finite F
-GLIBC_2.15 __exp2_finite F
-GLIBC_2.15 __exp2f_finite F
-GLIBC_2.15 __exp_finite F
-GLIBC_2.15 __expf_finite F
-GLIBC_2.15 __fmod_finite F
-GLIBC_2.15 __fmodf_finite F
-GLIBC_2.15 __gamma_r_finite F
-GLIBC_2.15 __gammaf_r_finite F
-GLIBC_2.15 __hypot_finite F
-GLIBC_2.15 __hypotf_finite F
-GLIBC_2.15 __j0_finite F
-GLIBC_2.15 __j0f_finite F
-GLIBC_2.15 __j1_finite F
-GLIBC_2.15 __j1f_finite F
-GLIBC_2.15 __jn_finite F
-GLIBC_2.15 __jnf_finite F
-GLIBC_2.15 __lgamma_r_finite F
-GLIBC_2.15 __lgammaf_r_finite F
-GLIBC_2.15 __log10_finite F
-GLIBC_2.15 __log10f_finite F
-GLIBC_2.15 __log2_finite F
-GLIBC_2.15 __log2f_finite F
-GLIBC_2.15 __log_finite F
-GLIBC_2.15 __logf_finite F
-GLIBC_2.15 __pow_finite F
-GLIBC_2.15 __powf_finite F
-GLIBC_2.15 __remainder_finite F
-GLIBC_2.15 __remainderf_finite F
-GLIBC_2.15 __scalb_finite F
-GLIBC_2.15 __scalbf_finite F
-GLIBC_2.15 __sinh_finite F
-GLIBC_2.15 __sinhf_finite F
-GLIBC_2.15 __sqrt_finite F
-GLIBC_2.15 __sqrtf_finite F
-GLIBC_2.15 __y0_finite F
-GLIBC_2.15 __y0f_finite F
-GLIBC_2.15 __y1_finite F
-GLIBC_2.15 __y1f_finite F
-GLIBC_2.15 __yn_finite F
-GLIBC_2.15 __ynf_finite F
-GLIBC_2.18 GLIBC_2.18 A
-GLIBC_2.18 __issignaling F
-GLIBC_2.18 __issignalingf F
-GLIBC_2.23 GLIBC_2.23 A
-GLIBC_2.23 __signgam D 0x4
-GLIBC_2.23 lgamma F
-GLIBC_2.23 lgammaf F
-GLIBC_2.23 lgammal F
-GLIBC_2.24 GLIBC_2.24 A
-GLIBC_2.24 nextdown F
-GLIBC_2.24 nextdownf F
-GLIBC_2.24 nextdownl F
-GLIBC_2.24 nextup F
-GLIBC_2.24 nextupf F
-GLIBC_2.24 nextupl F
-GLIBC_2.25 GLIBC_2.25 A
-GLIBC_2.25 __iseqsig F
-GLIBC_2.25 __iseqsigf F
-GLIBC_2.25 canonicalize F
-GLIBC_2.25 canonicalizef F
-GLIBC_2.25 canonicalizel F
-GLIBC_2.25 fegetmode F
-GLIBC_2.25 fesetexcept F
-GLIBC_2.25 fesetmode F
-GLIBC_2.25 fetestexceptflag F
-GLIBC_2.25 fmaxmag F
-GLIBC_2.25 fmaxmagf F
-GLIBC_2.25 fmaxmagl F
-GLIBC_2.25 fminmag F
-GLIBC_2.25 fminmagf F
-GLIBC_2.25 fminmagl F
-GLIBC_2.25 fromfp F
-GLIBC_2.25 fromfpf F
-GLIBC_2.25 fromfpl F
-GLIBC_2.25 fromfpx F
-GLIBC_2.25 fromfpxf F
-GLIBC_2.25 fromfpxl F
-GLIBC_2.25 getpayload F
-GLIBC_2.25 getpayloadf F
-GLIBC_2.25 getpayloadl F
-GLIBC_2.25 llogb F
-GLIBC_2.25 llogbf F
-GLIBC_2.25 llogbl F
-GLIBC_2.25 roundeven F
-GLIBC_2.25 roundevenf F
-GLIBC_2.25 roundevenl F
-GLIBC_2.25 setpayload F
-GLIBC_2.25 setpayloadf F
-GLIBC_2.25 setpayloadl F
-GLIBC_2.25 setpayloadsig F
-GLIBC_2.25 setpayloadsigf F
-GLIBC_2.25 setpayloadsigl F
-GLIBC_2.25 totalorder F
-GLIBC_2.25 totalorderf F
-GLIBC_2.25 totalorderl F
-GLIBC_2.25 totalordermag F
-GLIBC_2.25 totalordermagf F
-GLIBC_2.25 totalordermagl F
-GLIBC_2.25 ufromfp F
-GLIBC_2.25 ufromfpf F
-GLIBC_2.25 ufromfpl F
-GLIBC_2.25 ufromfpx F
-GLIBC_2.25 ufromfpxf F
-GLIBC_2.25 ufromfpxl F
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 _LIB_VERSION D 0x4
-GLIBC_2.4 __clog10 F
-GLIBC_2.4 __clog10f F
-GLIBC_2.4 __clog10l F
-GLIBC_2.4 __finite F
-GLIBC_2.4 __finitef F
-GLIBC_2.4 __finitel F
-GLIBC_2.4 __fpclassify F
-GLIBC_2.4 __fpclassifyf F
-GLIBC_2.4 __signbit F
-GLIBC_2.4 __signbitf F
-GLIBC_2.4 acos F
-GLIBC_2.4 acosf F
-GLIBC_2.4 acosh F
-GLIBC_2.4 acoshf F
-GLIBC_2.4 acoshl F
-GLIBC_2.4 acosl F
-GLIBC_2.4 asin F
-GLIBC_2.4 asinf F
-GLIBC_2.4 asinh F
-GLIBC_2.4 asinhf F
-GLIBC_2.4 asinhl F
-GLIBC_2.4 asinl F
-GLIBC_2.4 atan F
-GLIBC_2.4 atan2 F
-GLIBC_2.4 atan2f F
-GLIBC_2.4 atan2l F
-GLIBC_2.4 atanf F
-GLIBC_2.4 atanh F
-GLIBC_2.4 atanhf F
-GLIBC_2.4 atanhl F
-GLIBC_2.4 atanl F
-GLIBC_2.4 cabs F
-GLIBC_2.4 cabsf F
-GLIBC_2.4 cabsl F
-GLIBC_2.4 cacos F
-GLIBC_2.4 cacosf F
-GLIBC_2.4 cacosh F
-GLIBC_2.4 cacoshf F
-GLIBC_2.4 cacoshl F
-GLIBC_2.4 cacosl F
-GLIBC_2.4 carg F
-GLIBC_2.4 cargf F
-GLIBC_2.4 cargl F
-GLIBC_2.4 casin F
-GLIBC_2.4 casinf F
-GLIBC_2.4 casinh F
-GLIBC_2.4 casinhf F
-GLIBC_2.4 casinhl F
-GLIBC_2.4 casinl F
-GLIBC_2.4 catan F
-GLIBC_2.4 catanf F
-GLIBC_2.4 catanh F
-GLIBC_2.4 catanhf F
-GLIBC_2.4 catanhl F
-GLIBC_2.4 catanl F
-GLIBC_2.4 cbrt F
-GLIBC_2.4 cbrtf F
-GLIBC_2.4 cbrtl F
-GLIBC_2.4 ccos F
-GLIBC_2.4 ccosf F
-GLIBC_2.4 ccosh F
-GLIBC_2.4 ccoshf F
-GLIBC_2.4 ccoshl F
-GLIBC_2.4 ccosl F
-GLIBC_2.4 ceil F
-GLIBC_2.4 ceilf F
-GLIBC_2.4 ceill F
-GLIBC_2.4 cexp F
-GLIBC_2.4 cexpf F
-GLIBC_2.4 cexpl F
-GLIBC_2.4 cimag F
-GLIBC_2.4 cimagf F
-GLIBC_2.4 cimagl F
-GLIBC_2.4 clog F
-GLIBC_2.4 clog10 F
-GLIBC_2.4 clog10f F
-GLIBC_2.4 clog10l F
-GLIBC_2.4 clogf F
-GLIBC_2.4 clogl F
-GLIBC_2.4 conj F
-GLIBC_2.4 conjf F
-GLIBC_2.4 conjl F
-GLIBC_2.4 copysign F
-GLIBC_2.4 copysignf F
-GLIBC_2.4 copysignl F
-GLIBC_2.4 cos F
-GLIBC_2.4 cosf F
-GLIBC_2.4 cosh F
-GLIBC_2.4 coshf F
-GLIBC_2.4 coshl F
-GLIBC_2.4 cosl F
-GLIBC_2.4 cpow F
-GLIBC_2.4 cpowf F
-GLIBC_2.4 cpowl F
-GLIBC_2.4 cproj F
-GLIBC_2.4 cprojf F
-GLIBC_2.4 cprojl F
-GLIBC_2.4 creal F
-GLIBC_2.4 crealf F
-GLIBC_2.4 creall F
-GLIBC_2.4 csin F
-GLIBC_2.4 csinf F
-GLIBC_2.4 csinh F
-GLIBC_2.4 csinhf F
-GLIBC_2.4 csinhl F
-GLIBC_2.4 csinl F
-GLIBC_2.4 csqrt F
-GLIBC_2.4 csqrtf F
-GLIBC_2.4 csqrtl F
-GLIBC_2.4 ctan F
-GLIBC_2.4 ctanf F
-GLIBC_2.4 ctanh F
-GLIBC_2.4 ctanhf F
-GLIBC_2.4 ctanhl F
-GLIBC_2.4 ctanl F
-GLIBC_2.4 drem F
-GLIBC_2.4 dremf F
-GLIBC_2.4 dreml F
-GLIBC_2.4 erf F
-GLIBC_2.4 erfc F
-GLIBC_2.4 erfcf F
-GLIBC_2.4 erfcl F
-GLIBC_2.4 erff F
-GLIBC_2.4 erfl F
-GLIBC_2.4 exp F
-GLIBC_2.4 exp10 F
-GLIBC_2.4 exp10f F
-GLIBC_2.4 exp10l F
-GLIBC_2.4 exp2 F
-GLIBC_2.4 exp2f F
-GLIBC_2.4 exp2l F
-GLIBC_2.4 expf F
-GLIBC_2.4 expl F
-GLIBC_2.4 expm1 F
-GLIBC_2.4 expm1f F
-GLIBC_2.4 expm1l F
-GLIBC_2.4 fabs F
-GLIBC_2.4 fabsf F
-GLIBC_2.4 fabsl F
-GLIBC_2.4 fdim F
-GLIBC_2.4 fdimf F
-GLIBC_2.4 fdiml F
-GLIBC_2.4 feclearexcept F
-GLIBC_2.4 fedisableexcept F
-GLIBC_2.4 feenableexcept F
-GLIBC_2.4 fegetenv F
-GLIBC_2.4 fegetexcept F
-GLIBC_2.4 fegetexceptflag F
-GLIBC_2.4 fegetround F
-GLIBC_2.4 feholdexcept F
-GLIBC_2.4 feraiseexcept F
-GLIBC_2.4 fesetenv F
-GLIBC_2.4 fesetexceptflag F
-GLIBC_2.4 fesetround F
-GLIBC_2.4 fetestexcept F
-GLIBC_2.4 feupdateenv F
-GLIBC_2.4 finite F
-GLIBC_2.4 finitef F
-GLIBC_2.4 finitel F
-GLIBC_2.4 floor F
-GLIBC_2.4 floorf F
-GLIBC_2.4 floorl F
-GLIBC_2.4 fma F
-GLIBC_2.4 fmaf F
-GLIBC_2.4 fmal F
-GLIBC_2.4 fmax F
-GLIBC_2.4 fmaxf F
-GLIBC_2.4 fmaxl F
-GLIBC_2.4 fmin F
-GLIBC_2.4 fminf F
-GLIBC_2.4 fminl F
-GLIBC_2.4 fmod F
-GLIBC_2.4 fmodf F
-GLIBC_2.4 fmodl F
-GLIBC_2.4 frexp F
-GLIBC_2.4 frexpf F
-GLIBC_2.4 frexpl F
-GLIBC_2.4 gamma F
-GLIBC_2.4 gammaf F
-GLIBC_2.4 gammal F
-GLIBC_2.4 hypot F
-GLIBC_2.4 hypotf F
-GLIBC_2.4 hypotl F
-GLIBC_2.4 ilogb F
-GLIBC_2.4 ilogbf F
-GLIBC_2.4 ilogbl F
-GLIBC_2.4 j0 F
-GLIBC_2.4 j0f F
-GLIBC_2.4 j0l F
-GLIBC_2.4 j1 F
-GLIBC_2.4 j1f F
-GLIBC_2.4 j1l F
-GLIBC_2.4 jn F
-GLIBC_2.4 jnf F
-GLIBC_2.4 jnl F
-GLIBC_2.4 ldexp F
-GLIBC_2.4 ldexpf F
-GLIBC_2.4 ldexpl F
-GLIBC_2.4 lgamma F
-GLIBC_2.4 lgamma_r F
-GLIBC_2.4 lgammaf F
-GLIBC_2.4 lgammaf_r F
-GLIBC_2.4 lgammal F
-GLIBC_2.4 lgammal_r F
-GLIBC_2.4 llrint F
-GLIBC_2.4 llrintf F
-GLIBC_2.4 llrintl F
-GLIBC_2.4 llround F
-GLIBC_2.4 llroundf F
-GLIBC_2.4 llroundl F
-GLIBC_2.4 log F
-GLIBC_2.4 log10 F
-GLIBC_2.4 log10f F
-GLIBC_2.4 log10l F
-GLIBC_2.4 log1p F
-GLIBC_2.4 log1pf F
-GLIBC_2.4 log1pl F
-GLIBC_2.4 log2 F
-GLIBC_2.4 log2f F
-GLIBC_2.4 log2l F
-GLIBC_2.4 logb F
-GLIBC_2.4 logbf F
-GLIBC_2.4 logbl F
-GLIBC_2.4 logf F
-GLIBC_2.4 logl F
-GLIBC_2.4 lrint F
-GLIBC_2.4 lrintf F
-GLIBC_2.4 lrintl F
-GLIBC_2.4 lround F
-GLIBC_2.4 lroundf F
-GLIBC_2.4 lroundl F
-GLIBC_2.4 matherr F
-GLIBC_2.4 modf F
-GLIBC_2.4 modff F
-GLIBC_2.4 modfl F
-GLIBC_2.4 nan F
-GLIBC_2.4 nanf F
-GLIBC_2.4 nanl F
-GLIBC_2.4 nearbyint F
-GLIBC_2.4 nearbyintf F
-GLIBC_2.4 nearbyintl F
-GLIBC_2.4 nextafter F
-GLIBC_2.4 nextafterf F
-GLIBC_2.4 nextafterl F
-GLIBC_2.4 nexttoward F
-GLIBC_2.4 nexttowardf F
-GLIBC_2.4 nexttowardl F
-GLIBC_2.4 pow F
-GLIBC_2.4 pow10 F
-GLIBC_2.4 pow10f F
-GLIBC_2.4 pow10l F
-GLIBC_2.4 powf F
-GLIBC_2.4 powl F
-GLIBC_2.4 remainder F
-GLIBC_2.4 remainderf F
-GLIBC_2.4 remainderl F
-GLIBC_2.4 remquo F
-GLIBC_2.4 remquof F
-GLIBC_2.4 remquol F
-GLIBC_2.4 rint F
-GLIBC_2.4 rintf F
-GLIBC_2.4 rintl F
-GLIBC_2.4 round F
-GLIBC_2.4 roundf F
-GLIBC_2.4 roundl F
-GLIBC_2.4 scalb F
-GLIBC_2.4 scalbf F
-GLIBC_2.4 scalbl F
-GLIBC_2.4 scalbln F
-GLIBC_2.4 scalblnf F
-GLIBC_2.4 scalblnl F
-GLIBC_2.4 scalbn F
-GLIBC_2.4 scalbnf F
-GLIBC_2.4 scalbnl F
-GLIBC_2.4 signgam D 0x4
-GLIBC_2.4 significand F
-GLIBC_2.4 significandf F
-GLIBC_2.4 significandl F
-GLIBC_2.4 sin F
-GLIBC_2.4 sincos F
-GLIBC_2.4 sincosf F
-GLIBC_2.4 sincosl F
-GLIBC_2.4 sinf F
-GLIBC_2.4 sinh F
-GLIBC_2.4 sinhf F
-GLIBC_2.4 sinhl F
-GLIBC_2.4 sinl F
-GLIBC_2.4 sqrt F
-GLIBC_2.4 sqrtf F
-GLIBC_2.4 sqrtl F
-GLIBC_2.4 tan F
-GLIBC_2.4 tanf F
-GLIBC_2.4 tanh F
-GLIBC_2.4 tanhf F
-GLIBC_2.4 tanhl F
-GLIBC_2.4 tanl F
-GLIBC_2.4 tgamma F
-GLIBC_2.4 tgammaf F
-GLIBC_2.4 tgammal F
-GLIBC_2.4 trunc F
-GLIBC_2.4 truncf F
-GLIBC_2.4 truncl F
-GLIBC_2.4 y0 F
-GLIBC_2.4 y0f F
-GLIBC_2.4 y0l F
-GLIBC_2.4 y1 F
-GLIBC_2.4 y1f F
-GLIBC_2.4 y1l F
-GLIBC_2.4 yn F
-GLIBC_2.4 ynf F
-GLIBC_2.4 ynl F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist
deleted file mode 100644
index 2b2e49e6a1..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist
+++ /dev/null
@@ -1,122 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 __free_fdresult F
-GLIBC_2.4 __nis_default_access F
-GLIBC_2.4 __nis_default_group F
-GLIBC_2.4 __nis_default_owner F
-GLIBC_2.4 __nis_default_ttl F
-GLIBC_2.4 __nis_finddirectory F
-GLIBC_2.4 __nis_hash F
-GLIBC_2.4 __nisbind_connect F
-GLIBC_2.4 __nisbind_create F
-GLIBC_2.4 __nisbind_destroy F
-GLIBC_2.4 __nisbind_next F
-GLIBC_2.4 __yp_check F
-GLIBC_2.4 nis_add F
-GLIBC_2.4 nis_add_entry F
-GLIBC_2.4 nis_addmember F
-GLIBC_2.4 nis_checkpoint F
-GLIBC_2.4 nis_clone_directory F
-GLIBC_2.4 nis_clone_object F
-GLIBC_2.4 nis_clone_result F
-GLIBC_2.4 nis_creategroup F
-GLIBC_2.4 nis_destroy_object F
-GLIBC_2.4 nis_destroygroup F
-GLIBC_2.4 nis_dir_cmp F
-GLIBC_2.4 nis_domain_of F
-GLIBC_2.4 nis_domain_of_r F
-GLIBC_2.4 nis_first_entry F
-GLIBC_2.4 nis_free_directory F
-GLIBC_2.4 nis_free_object F
-GLIBC_2.4 nis_free_request F
-GLIBC_2.4 nis_freenames F
-GLIBC_2.4 nis_freeresult F
-GLIBC_2.4 nis_freeservlist F
-GLIBC_2.4 nis_freetags F
-GLIBC_2.4 nis_getnames F
-GLIBC_2.4 nis_getservlist F
-GLIBC_2.4 nis_ismember F
-GLIBC_2.4 nis_leaf_of F
-GLIBC_2.4 nis_leaf_of_r F
-GLIBC_2.4 nis_lerror F
-GLIBC_2.4 nis_list F
-GLIBC_2.4 nis_local_directory F
-GLIBC_2.4 nis_local_group F
-GLIBC_2.4 nis_local_host F
-GLIBC_2.4 nis_local_principal F
-GLIBC_2.4 nis_lookup F
-GLIBC_2.4 nis_mkdir F
-GLIBC_2.4 nis_modify F
-GLIBC_2.4 nis_modify_entry F
-GLIBC_2.4 nis_name_of F
-GLIBC_2.4 nis_name_of_r F
-GLIBC_2.4 nis_next_entry F
-GLIBC_2.4 nis_perror F
-GLIBC_2.4 nis_ping F
-GLIBC_2.4 nis_print_directory F
-GLIBC_2.4 nis_print_entry F
-GLIBC_2.4 nis_print_group F
-GLIBC_2.4 nis_print_group_entry F
-GLIBC_2.4 nis_print_link F
-GLIBC_2.4 nis_print_object F
-GLIBC_2.4 nis_print_result F
-GLIBC_2.4 nis_print_rights F
-GLIBC_2.4 nis_print_table F
-GLIBC_2.4 nis_read_obj F
-GLIBC_2.4 nis_remove F
-GLIBC_2.4 nis_remove_entry F
-GLIBC_2.4 nis_removemember F
-GLIBC_2.4 nis_rmdir F
-GLIBC_2.4 nis_servstate F
-GLIBC_2.4 nis_sperrno F
-GLIBC_2.4 nis_sperror F
-GLIBC_2.4 nis_sperror_r F
-GLIBC_2.4 nis_stats F
-GLIBC_2.4 nis_verifygroup F
-GLIBC_2.4 nis_write_obj F
-GLIBC_2.4 readColdStartFile F
-GLIBC_2.4 writeColdStartFile F
-GLIBC_2.4 xdr_cback_data F
-GLIBC_2.4 xdr_domainname F
-GLIBC_2.4 xdr_keydat F
-GLIBC_2.4 xdr_mapname F
-GLIBC_2.4 xdr_obj_p F
-GLIBC_2.4 xdr_peername F
-GLIBC_2.4 xdr_valdat F
-GLIBC_2.4 xdr_yp_buf F
-GLIBC_2.4 xdr_ypall F
-GLIBC_2.4 xdr_ypbind_binding F
-GLIBC_2.4 xdr_ypbind_resp F
-GLIBC_2.4 xdr_ypbind_resptype F
-GLIBC_2.4 xdr_ypbind_setdom F
-GLIBC_2.4 xdr_ypdelete_args F
-GLIBC_2.4 xdr_ypmap_parms F
-GLIBC_2.4 xdr_ypmaplist F
-GLIBC_2.4 xdr_yppush_status F
-GLIBC_2.4 xdr_yppushresp_xfr F
-GLIBC_2.4 xdr_ypreq_key F
-GLIBC_2.4 xdr_ypreq_nokey F
-GLIBC_2.4 xdr_ypreq_xfr F
-GLIBC_2.4 xdr_ypresp_all F
-GLIBC_2.4 xdr_ypresp_key_val F
-GLIBC_2.4 xdr_ypresp_maplist F
-GLIBC_2.4 xdr_ypresp_master F
-GLIBC_2.4 xdr_ypresp_order F
-GLIBC_2.4 xdr_ypresp_val F
-GLIBC_2.4 xdr_ypresp_xfr F
-GLIBC_2.4 xdr_ypstat F
-GLIBC_2.4 xdr_ypupdate_args F
-GLIBC_2.4 xdr_ypxfrstat F
-GLIBC_2.4 yp_all F
-GLIBC_2.4 yp_bind F
-GLIBC_2.4 yp_first F
-GLIBC_2.4 yp_get_default_domain F
-GLIBC_2.4 yp_maplist F
-GLIBC_2.4 yp_master F
-GLIBC_2.4 yp_match F
-GLIBC_2.4 yp_next F
-GLIBC_2.4 yp_order F
-GLIBC_2.4 yp_unbind F
-GLIBC_2.4 yp_update F
-GLIBC_2.4 ypbinderr_string F
-GLIBC_2.4 yperr_string F
-GLIBC_2.4 ypprot_err F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist
deleted file mode 100644
index 91545c1542..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist
+++ /dev/null
@@ -1,228 +0,0 @@
-GLIBC_2.11 GLIBC_2.11 A
-GLIBC_2.11 pthread_sigqueue F
-GLIBC_2.12 GLIBC_2.12 A
-GLIBC_2.12 pthread_getname_np F
-GLIBC_2.12 pthread_mutex_consistent F
-GLIBC_2.12 pthread_mutexattr_getrobust F
-GLIBC_2.12 pthread_mutexattr_setrobust F
-GLIBC_2.12 pthread_setname_np F
-GLIBC_2.18 GLIBC_2.18 A
-GLIBC_2.18 pthread_getattr_default_np F
-GLIBC_2.18 pthread_setattr_default_np F
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 _IO_flockfile F
-GLIBC_2.4 _IO_ftrylockfile F
-GLIBC_2.4 _IO_funlockfile F
-GLIBC_2.4 __close F
-GLIBC_2.4 __connect F
-GLIBC_2.4 __errno_location F
-GLIBC_2.4 __fcntl F
-GLIBC_2.4 __fork F
-GLIBC_2.4 __h_errno_location F
-GLIBC_2.4 __libc_allocate_rtsig F
-GLIBC_2.4 __libc_current_sigrtmax F
-GLIBC_2.4 __libc_current_sigrtmin F
-GLIBC_2.4 __lseek F
-GLIBC_2.4 __nanosleep F
-GLIBC_2.4 __open F
-GLIBC_2.4 __open64 F
-GLIBC_2.4 __pread64 F
-GLIBC_2.4 __pthread_cleanup_routine F
-GLIBC_2.4 __pthread_getspecific F
-GLIBC_2.4 __pthread_key_create F
-GLIBC_2.4 __pthread_mutex_destroy F
-GLIBC_2.4 __pthread_mutex_init F
-GLIBC_2.4 __pthread_mutex_lock F
-GLIBC_2.4 __pthread_mutex_trylock F
-GLIBC_2.4 __pthread_mutex_unlock F
-GLIBC_2.4 __pthread_mutexattr_destroy F
-GLIBC_2.4 __pthread_mutexattr_init F
-GLIBC_2.4 __pthread_mutexattr_settype F
-GLIBC_2.4 __pthread_once F
-GLIBC_2.4 __pthread_register_cancel F
-GLIBC_2.4 __pthread_register_cancel_defer F
-GLIBC_2.4 __pthread_rwlock_destroy F
-GLIBC_2.4 __pthread_rwlock_init F
-GLIBC_2.4 __pthread_rwlock_rdlock F
-GLIBC_2.4 __pthread_rwlock_tryrdlock F
-GLIBC_2.4 __pthread_rwlock_trywrlock F
-GLIBC_2.4 __pthread_rwlock_unlock F
-GLIBC_2.4 __pthread_rwlock_wrlock F
-GLIBC_2.4 __pthread_setspecific F
-GLIBC_2.4 __pthread_unregister_cancel F
-GLIBC_2.4 __pthread_unregister_cancel_restore F
-GLIBC_2.4 __pthread_unwind_next F
-GLIBC_2.4 __pwrite64 F
-GLIBC_2.4 __read F
-GLIBC_2.4 __res_state F
-GLIBC_2.4 __send F
-GLIBC_2.4 __sigaction F
-GLIBC_2.4 __vfork F
-GLIBC_2.4 __wait F
-GLIBC_2.4 __write F
-GLIBC_2.4 _pthread_cleanup_pop F
-GLIBC_2.4 _pthread_cleanup_pop_restore F
-GLIBC_2.4 _pthread_cleanup_push F
-GLIBC_2.4 _pthread_cleanup_push_defer F
-GLIBC_2.4 accept F
-GLIBC_2.4 close F
-GLIBC_2.4 connect F
-GLIBC_2.4 fcntl F
-GLIBC_2.4 flockfile F
-GLIBC_2.4 fork F
-GLIBC_2.4 fsync F
-GLIBC_2.4 ftrylockfile F
-GLIBC_2.4 funlockfile F
-GLIBC_2.4 longjmp F
-GLIBC_2.4 lseek F
-GLIBC_2.4 lseek64 F
-GLIBC_2.4 msync F
-GLIBC_2.4 nanosleep F
-GLIBC_2.4 open F
-GLIBC_2.4 open64 F
-GLIBC_2.4 pause F
-GLIBC_2.4 pread F
-GLIBC_2.4 pread64 F
-GLIBC_2.4 pthread_attr_destroy F
-GLIBC_2.4 pthread_attr_getaffinity_np F
-GLIBC_2.4 pthread_attr_getdetachstate F
-GLIBC_2.4 pthread_attr_getguardsize F
-GLIBC_2.4 pthread_attr_getinheritsched F
-GLIBC_2.4 pthread_attr_getschedparam F
-GLIBC_2.4 pthread_attr_getschedpolicy F
-GLIBC_2.4 pthread_attr_getscope F
-GLIBC_2.4 pthread_attr_getstack F
-GLIBC_2.4 pthread_attr_getstackaddr F
-GLIBC_2.4 pthread_attr_getstacksize F
-GLIBC_2.4 pthread_attr_init F
-GLIBC_2.4 pthread_attr_setaffinity_np F
-GLIBC_2.4 pthread_attr_setdetachstate F
-GLIBC_2.4 pthread_attr_setguardsize F
-GLIBC_2.4 pthread_attr_setinheritsched F
-GLIBC_2.4 pthread_attr_setschedparam F
-GLIBC_2.4 pthread_attr_setschedpolicy F
-GLIBC_2.4 pthread_attr_setscope F
-GLIBC_2.4 pthread_attr_setstack F
-GLIBC_2.4 pthread_attr_setstackaddr F
-GLIBC_2.4 pthread_attr_setstacksize F
-GLIBC_2.4 pthread_barrier_destroy F
-GLIBC_2.4 pthread_barrier_init F
-GLIBC_2.4 pthread_barrier_wait F
-GLIBC_2.4 pthread_barrierattr_destroy F
-GLIBC_2.4 pthread_barrierattr_getpshared F
-GLIBC_2.4 pthread_barrierattr_init F
-GLIBC_2.4 pthread_barrierattr_setpshared F
-GLIBC_2.4 pthread_cancel F
-GLIBC_2.4 pthread_cond_broadcast F
-GLIBC_2.4 pthread_cond_destroy F
-GLIBC_2.4 pthread_cond_init F
-GLIBC_2.4 pthread_cond_signal F
-GLIBC_2.4 pthread_cond_timedwait F
-GLIBC_2.4 pthread_cond_wait F
-GLIBC_2.4 pthread_condattr_destroy F
-GLIBC_2.4 pthread_condattr_getclock F
-GLIBC_2.4 pthread_condattr_getpshared F
-GLIBC_2.4 pthread_condattr_init F
-GLIBC_2.4 pthread_condattr_setclock F
-GLIBC_2.4 pthread_condattr_setpshared F
-GLIBC_2.4 pthread_create F
-GLIBC_2.4 pthread_detach F
-GLIBC_2.4 pthread_equal F
-GLIBC_2.4 pthread_exit F
-GLIBC_2.4 pthread_getaffinity_np F
-GLIBC_2.4 pthread_getattr_np F
-GLIBC_2.4 pthread_getconcurrency F
-GLIBC_2.4 pthread_getcpuclockid F
-GLIBC_2.4 pthread_getschedparam F
-GLIBC_2.4 pthread_getspecific F
-GLIBC_2.4 pthread_join F
-GLIBC_2.4 pthread_key_create F
-GLIBC_2.4 pthread_key_delete F
-GLIBC_2.4 pthread_kill F
-GLIBC_2.4 pthread_kill_other_threads_np F
-GLIBC_2.4 pthread_mutex_consistent_np F
-GLIBC_2.4 pthread_mutex_destroy F
-GLIBC_2.4 pthread_mutex_getprioceiling F
-GLIBC_2.4 pthread_mutex_init F
-GLIBC_2.4 pthread_mutex_lock F
-GLIBC_2.4 pthread_mutex_setprioceiling F
-GLIBC_2.4 pthread_mutex_timedlock F
-GLIBC_2.4 pthread_mutex_trylock F
-GLIBC_2.4 pthread_mutex_unlock F
-GLIBC_2.4 pthread_mutexattr_destroy F
-GLIBC_2.4 pthread_mutexattr_getkind_np F
-GLIBC_2.4 pthread_mutexattr_getprioceiling F
-GLIBC_2.4 pthread_mutexattr_getprotocol F
-GLIBC_2.4 pthread_mutexattr_getpshared F
-GLIBC_2.4 pthread_mutexattr_getrobust_np F
-GLIBC_2.4 pthread_mutexattr_gettype F
-GLIBC_2.4 pthread_mutexattr_init F
-GLIBC_2.4 pthread_mutexattr_setkind_np F
-GLIBC_2.4 pthread_mutexattr_setprioceiling F
-GLIBC_2.4 pthread_mutexattr_setprotocol F
-GLIBC_2.4 pthread_mutexattr_setpshared F
-GLIBC_2.4 pthread_mutexattr_setrobust_np F
-GLIBC_2.4 pthread_mutexattr_settype F
-GLIBC_2.4 pthread_once F
-GLIBC_2.4 pthread_rwlock_destroy F
-GLIBC_2.4 pthread_rwlock_init F
-GLIBC_2.4 pthread_rwlock_rdlock F
-GLIBC_2.4 pthread_rwlock_timedrdlock F
-GLIBC_2.4 pthread_rwlock_timedwrlock F
-GLIBC_2.4 pthread_rwlock_tryrdlock F
-GLIBC_2.4 pthread_rwlock_trywrlock F
-GLIBC_2.4 pthread_rwlock_unlock F
-GLIBC_2.4 pthread_rwlock_wrlock F
-GLIBC_2.4 pthread_rwlockattr_destroy F
-GLIBC_2.4 pthread_rwlockattr_getkind_np F
-GLIBC_2.4 pthread_rwlockattr_getpshared F
-GLIBC_2.4 pthread_rwlockattr_init F
-GLIBC_2.4 pthread_rwlockattr_setkind_np F
-GLIBC_2.4 pthread_rwlockattr_setpshared F
-GLIBC_2.4 pthread_self F
-GLIBC_2.4 pthread_setaffinity_np F
-GLIBC_2.4 pthread_setcancelstate F
-GLIBC_2.4 pthread_setcanceltype F
-GLIBC_2.4 pthread_setconcurrency F
-GLIBC_2.4 pthread_setschedparam F
-GLIBC_2.4 pthread_setschedprio F
-GLIBC_2.4 pthread_setspecific F
-GLIBC_2.4 pthread_sigmask F
-GLIBC_2.4 pthread_spin_destroy F
-GLIBC_2.4 pthread_spin_init F
-GLIBC_2.4 pthread_spin_lock F
-GLIBC_2.4 pthread_spin_trylock F
-GLIBC_2.4 pthread_spin_unlock F
-GLIBC_2.4 pthread_testcancel F
-GLIBC_2.4 pthread_timedjoin_np F
-GLIBC_2.4 pthread_tryjoin_np F
-GLIBC_2.4 pthread_yield F
-GLIBC_2.4 pwrite F
-GLIBC_2.4 pwrite64 F
-GLIBC_2.4 raise F
-GLIBC_2.4 read F
-GLIBC_2.4 recv F
-GLIBC_2.4 recvfrom F
-GLIBC_2.4 recvmsg F
-GLIBC_2.4 sem_close F
-GLIBC_2.4 sem_destroy F
-GLIBC_2.4 sem_getvalue F
-GLIBC_2.4 sem_init F
-GLIBC_2.4 sem_open F
-GLIBC_2.4 sem_post F
-GLIBC_2.4 sem_timedwait F
-GLIBC_2.4 sem_trywait F
-GLIBC_2.4 sem_unlink F
-GLIBC_2.4 sem_wait F
-GLIBC_2.4 send F
-GLIBC_2.4 sendmsg F
-GLIBC_2.4 sendto F
-GLIBC_2.4 sigaction F
-GLIBC_2.4 siglongjmp F
-GLIBC_2.4 sigwait F
-GLIBC_2.4 system F
-GLIBC_2.4 tcdrain F
-GLIBC_2.4 vfork F
-GLIBC_2.4 wait F
-GLIBC_2.4 waitpid F
-GLIBC_2.4 write F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist
deleted file mode 100644
index c7023be532..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist
+++ /dev/null
@@ -1,93 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 __b64_ntop F
-GLIBC_2.4 __b64_pton F
-GLIBC_2.4 __dn_comp F
-GLIBC_2.4 __dn_count_labels F
-GLIBC_2.4 __dn_expand F
-GLIBC_2.4 __dn_skipname F
-GLIBC_2.4 __fp_nquery F
-GLIBC_2.4 __fp_query F
-GLIBC_2.4 __fp_resstat F
-GLIBC_2.4 __hostalias F
-GLIBC_2.4 __loc_aton F
-GLIBC_2.4 __loc_ntoa F
-GLIBC_2.4 __p_cdname F
-GLIBC_2.4 __p_cdnname F
-GLIBC_2.4 __p_class F
-GLIBC_2.4 __p_class_syms D 0x54
-GLIBC_2.4 __p_fqname F
-GLIBC_2.4 __p_fqnname F
-GLIBC_2.4 __p_option F
-GLIBC_2.4 __p_query F
-GLIBC_2.4 __p_rcode F
-GLIBC_2.4 __p_secstodate F
-GLIBC_2.4 __p_time F
-GLIBC_2.4 __p_type F
-GLIBC_2.4 __p_type_syms D 0x228
-GLIBC_2.4 __putlong F
-GLIBC_2.4 __putshort F
-GLIBC_2.4 __res_close F
-GLIBC_2.4 __res_dnok F
-GLIBC_2.4 __res_hnok F
-GLIBC_2.4 __res_hostalias F
-GLIBC_2.4 __res_isourserver F
-GLIBC_2.4 __res_mailok F
-GLIBC_2.4 __res_mkquery F
-GLIBC_2.4 __res_nameinquery F
-GLIBC_2.4 __res_nmkquery F
-GLIBC_2.4 __res_nquery F
-GLIBC_2.4 __res_nquerydomain F
-GLIBC_2.4 __res_nsearch F
-GLIBC_2.4 __res_nsend F
-GLIBC_2.4 __res_ownok F
-GLIBC_2.4 __res_queriesmatch F
-GLIBC_2.4 __res_query F
-GLIBC_2.4 __res_querydomain F
-GLIBC_2.4 __res_search F
-GLIBC_2.4 __res_send F
-GLIBC_2.4 __sym_ntop F
-GLIBC_2.4 __sym_ntos F
-GLIBC_2.4 __sym_ston F
-GLIBC_2.4 _gethtbyaddr F
-GLIBC_2.4 _gethtbyname F
-GLIBC_2.4 _gethtbyname2 F
-GLIBC_2.4 _gethtent F
-GLIBC_2.4 _getlong F
-GLIBC_2.4 _getshort F
-GLIBC_2.4 _res_opcodes D 0x40
-GLIBC_2.4 _sethtent F
-GLIBC_2.4 inet_net_ntop F
-GLIBC_2.4 inet_net_pton F
-GLIBC_2.4 inet_neta F
-GLIBC_2.4 res_gethostbyaddr F
-GLIBC_2.4 res_gethostbyname F
-GLIBC_2.4 res_gethostbyname2 F
-GLIBC_2.4 res_send_setqhook F
-GLIBC_2.4 res_send_setrhook F
-GLIBC_2.9 GLIBC_2.9 A
-GLIBC_2.9 ns_datetosecs F
-GLIBC_2.9 ns_format_ttl F
-GLIBC_2.9 ns_get16 F
-GLIBC_2.9 ns_get32 F
-GLIBC_2.9 ns_initparse F
-GLIBC_2.9 ns_makecanon F
-GLIBC_2.9 ns_msg_getflag F
-GLIBC_2.9 ns_name_compress F
-GLIBC_2.9 ns_name_ntol F
-GLIBC_2.9 ns_name_ntop F
-GLIBC_2.9 ns_name_pack F
-GLIBC_2.9 ns_name_pton F
-GLIBC_2.9 ns_name_rollback F
-GLIBC_2.9 ns_name_skip F
-GLIBC_2.9 ns_name_uncompress F
-GLIBC_2.9 ns_name_unpack F
-GLIBC_2.9 ns_parse_ttl F
-GLIBC_2.9 ns_parserr F
-GLIBC_2.9 ns_put16 F
-GLIBC_2.9 ns_put32 F
-GLIBC_2.9 ns_samedomain F
-GLIBC_2.9 ns_samename F
-GLIBC_2.9 ns_skiprr F
-GLIBC_2.9 ns_sprintrr F
-GLIBC_2.9 ns_sprintrrf F
-GLIBC_2.9 ns_subdomain F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist
deleted file mode 100644
index b47aa0cc9c..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist
+++ /dev/null
@@ -1,42 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 aio_cancel F
-GLIBC_2.4 aio_cancel64 F
-GLIBC_2.4 aio_error F
-GLIBC_2.4 aio_error64 F
-GLIBC_2.4 aio_fsync F
-GLIBC_2.4 aio_fsync64 F
-GLIBC_2.4 aio_init F
-GLIBC_2.4 aio_read F
-GLIBC_2.4 aio_read64 F
-GLIBC_2.4 aio_return F
-GLIBC_2.4 aio_return64 F
-GLIBC_2.4 aio_suspend F
-GLIBC_2.4 aio_suspend64 F
-GLIBC_2.4 aio_write F
-GLIBC_2.4 aio_write64 F
-GLIBC_2.4 clock_getcpuclockid F
-GLIBC_2.4 clock_getres F
-GLIBC_2.4 clock_gettime F
-GLIBC_2.4 clock_nanosleep F
-GLIBC_2.4 clock_settime F
-GLIBC_2.4 lio_listio F
-GLIBC_2.4 lio_listio64 F
-GLIBC_2.4 mq_close F
-GLIBC_2.4 mq_getattr F
-GLIBC_2.4 mq_notify F
-GLIBC_2.4 mq_open F
-GLIBC_2.4 mq_receive F
-GLIBC_2.4 mq_send F
-GLIBC_2.4 mq_setattr F
-GLIBC_2.4 mq_timedreceive F
-GLIBC_2.4 mq_timedsend F
-GLIBC_2.4 mq_unlink F
-GLIBC_2.4 shm_open F
-GLIBC_2.4 shm_unlink F
-GLIBC_2.4 timer_create F
-GLIBC_2.4 timer_delete F
-GLIBC_2.4 timer_getoverrun F
-GLIBC_2.4 timer_gettime F
-GLIBC_2.4 timer_settime F
-GLIBC_2.7 GLIBC_2.7 A
-GLIBC_2.7 __mq_open_2 F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist
deleted file mode 100644
index 4cffcd2238..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist
+++ /dev/null
@@ -1,41 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 td_init F
-GLIBC_2.4 td_log F
-GLIBC_2.4 td_symbol_list F
-GLIBC_2.4 td_ta_clear_event F
-GLIBC_2.4 td_ta_delete F
-GLIBC_2.4 td_ta_enable_stats F
-GLIBC_2.4 td_ta_event_addr F
-GLIBC_2.4 td_ta_event_getmsg F
-GLIBC_2.4 td_ta_get_nthreads F
-GLIBC_2.4 td_ta_get_ph F
-GLIBC_2.4 td_ta_get_stats F
-GLIBC_2.4 td_ta_map_id2thr F
-GLIBC_2.4 td_ta_map_lwp2thr F
-GLIBC_2.4 td_ta_new F
-GLIBC_2.4 td_ta_reset_stats F
-GLIBC_2.4 td_ta_set_event F
-GLIBC_2.4 td_ta_setconcurrency F
-GLIBC_2.4 td_ta_thr_iter F
-GLIBC_2.4 td_ta_tsd_iter F
-GLIBC_2.4 td_thr_clear_event F
-GLIBC_2.4 td_thr_dbresume F
-GLIBC_2.4 td_thr_dbsuspend F
-GLIBC_2.4 td_thr_event_enable F
-GLIBC_2.4 td_thr_event_getmsg F
-GLIBC_2.4 td_thr_get_info F
-GLIBC_2.4 td_thr_getfpregs F
-GLIBC_2.4 td_thr_getgregs F
-GLIBC_2.4 td_thr_getxregs F
-GLIBC_2.4 td_thr_getxregsize F
-GLIBC_2.4 td_thr_set_event F
-GLIBC_2.4 td_thr_setfpregs F
-GLIBC_2.4 td_thr_setgregs F
-GLIBC_2.4 td_thr_setprio F
-GLIBC_2.4 td_thr_setsigpending F
-GLIBC_2.4 td_thr_setxregs F
-GLIBC_2.4 td_thr_sigsetmask F
-GLIBC_2.4 td_thr_tls_get_addr F
-GLIBC_2.4 td_thr_tlsbase F
-GLIBC_2.4 td_thr_tsd F
-GLIBC_2.4 td_thr_validate F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist
deleted file mode 100644
index 0b4f746094..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist
+++ /dev/null
@@ -1,7 +0,0 @@
-GLIBC_2.4 GLIBC_2.4 A
-GLIBC_2.4 forkpty F
-GLIBC_2.4 login F
-GLIBC_2.4 login_tty F
-GLIBC_2.4 logout F
-GLIBC_2.4 logwtmp F
-GLIBC_2.4 openpty F
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions b/sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions
deleted file mode 100644
index 4309e4a368..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions
+++ /dev/null
@@ -1 +0,0 @@
-DEFAULT                 GLIBC_2.4
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h b/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
deleted file mode 100644
index e55e650cc9..0000000000
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* Copyright (C) 2010-2017 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
-   <http://www.gnu.org/licenses/>.  */
-
-#ifndef _LINUX_M68K_COLDFIRE_SYSDEP_H
-#define _LINUX_M68K_COLDFIRE_SYSDEP_H 1
-
-#include <sysdeps/unix/sysdep.h>
-#include <sysdeps/m68k/coldfire/sysdep.h>
-#include <sysdeps/unix/sysv/linux/m68k/sysdep.h>
-
-#define SYSCALL_ERROR_LOAD_GOT(reg)					      \
-    move.l &_GLOBAL_OFFSET_TABLE_@GOTPC, reg;				      \
-    lea (-6, %pc, reg), reg
-
-#endif