diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-12-19 18:56:54 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-12-19 18:56:54 +0100 |
commit | c7bf2e99cafbd8970f81c38d6f32842cc7846421 (patch) | |
tree | 6df9a7855896e846ccd8fe8db570c13ad2895018 /stdio-common/Makefile | |
parent | 659fe9fdd14b0772f4e9722b751b9b010665e053 (diff) | |
download | glibc-c7bf2e99cafbd8970f81c38d6f32842cc7846421.zip glibc-c7bf2e99cafbd8970f81c38d6f32842cc7846421.tar.gz glibc-c7bf2e99cafbd8970f81c38d6f32842cc7846421.tar.bz2 |
stdio-common: Add __printf_function_invoke
And __wprintf_function_invoke. These functions will be used to
to call registered printf specifier callbacks on printf buffers
after vfprintf and vfwprintf have been converted to buffers. The new
implementation avoids alloca/variable length arrays.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'stdio-common/Makefile')
-rw-r--r-- | stdio-common/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stdio-common/Makefile b/stdio-common/Makefile index 120d66e..6e6da09 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -63,6 +63,7 @@ routines := \ printf_buffer_write \ printf_fp \ printf_fphex \ + printf_function_invoke \ printf_size \ psiginfo \ psignal \ @@ -101,6 +102,7 @@ routines := \ wprintf_buffer_puts_1 \ wprintf_buffer_to_file \ wprintf_buffer_write \ + wprintf_function_invoke \ # routines aux := \ |