mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Add internal facility for dynamic array handling
This is intended as a type-safe alternative to obstacks and hand-written realloc constructs. The implementation avoids writing function pointers to the heap.
This commit is contained in:
@ -76,7 +76,15 @@ libc {
|
||||
__libc_scratch_buffer_grow_preserve;
|
||||
__libc_scratch_buffer_set_array_size;
|
||||
|
||||
|
||||
# Internal name for reallocarray
|
||||
__libc_reallocarray;
|
||||
|
||||
# dynarray support
|
||||
__libc_dynarray_at_failure;
|
||||
__libc_dynarray_emplace_enlarge;
|
||||
__libc_dynarray_finalize;
|
||||
__libc_dynarray_resize;
|
||||
__libc_dynarray_resize_clear;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user