Add sysdeps/ieee754/soft-fp.
[glibc.git] / malloc / Versions
blob2357cff3da8ef5176fe105f4813628d83f2ed6c2
1 libc {
2   GLIBC_2.0 {
3     # global variables
4     _obstack;
6     # interface of malloc functions
7     __libc_calloc; __libc_free; __libc_mallinfo; __libc_malloc;
8     __libc_mallopt; __libc_memalign; __libc_pvalloc; __libc_realloc;
9     __libc_valloc;
10     __malloc_initialize_hook; __free_hook; __malloc_hook; __realloc_hook;
11     __memalign_hook; __after_morecore_hook;
12     __malloc_initialized; __default_morecore; __morecore;
14     # functions used in inline functions or macros
15     _obstack_allocated_p; _obstack_begin; _obstack_begin_1;
16     _obstack_free; _obstack_memory_used; _obstack_newchunk;
18     # variables in normal name space
19     mallwatch; obstack_alloc_failed_handler; obstack_exit_failure;
21     # c*
22     calloc; cfree;
24     # f*
25     free;
27     # m*
28     mallinfo; malloc; malloc_get_state; malloc_set_state; malloc_stats;
29     malloc_trim; malloc_usable_size; mallopt; memalign; mprobe; mtrace;
30     muntrace;
32     # o*
33     obstack_free;
35     # p*
36     pvalloc;
38     # r*
39     realloc;
41     # t*
42     tr_break;
44     # v*
45     valloc;
46   }
47   GLIBC_2.1 {
48     # Special functions.
49     __libc_freeres;
50   }
51   GLIBC_2.2 {
52     # m*
53     mcheck_check_all; mcheck_pedantic;
55     # p*
56     posix_memalign;
57   }
58   GLIBC_2.10 {
59     malloc_info;
60   }
61   GLIBC_2.16 {
62     aligned_alloc;
63   }
64   GLIBC_2.26 {
65     reallocarray;
66   }
67   GLIBC_PRIVATE {
68     # Internal startup hook for libpthread.
69     __libc_malloc_pthread_startup;
71     # Internal destructor hook for libpthread.
72     __libc_thread_freeres;
74     # struct scratch_buffer support
75     __libc_scratch_buffer_grow;
76     __libc_scratch_buffer_grow_preserve;
77     __libc_scratch_buffer_set_array_size;
79     # Internal name for reallocarray
80     __libc_reallocarray;
82     # dynarray support
83     __libc_dynarray_at_failure;
84     __libc_dynarray_emplace_enlarge;
85     __libc_dynarray_finalize;
86     __libc_dynarray_resize;
87     __libc_dynarray_resize_clear;
89     # struct alloc_buffer support
90     __libc_alloc_buffer_alloc_array;
91     __libc_alloc_buffer_allocate;
92     __libc_alloc_buffer_copy_bytes;
93     __libc_alloc_buffer_copy_string;
94     __libc_alloc_buffer_create_failure;
95   }