diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-05-24 08:03:11 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-05-24 08:03:11 +0200 |
commit | 800d535504c06f16726f2add8602ee9a36baf808 (patch) | |
tree | fdb95553dc154eae4033f75acb34e29461420ce0 /stdio-common/reg-printf.c | |
parent | 36c1dbaedd90f36397f28a96ae265e11b20fc616 (diff) | |
download | glibc-800d535504c06f16726f2add8602ee9a36baf808.tar.gz glibc-800d535504c06f16726f2add8602ee9a36baf808.tar.xz glibc-800d535504c06f16726f2add8602ee9a36baf808.zip |
stdio-common: Add printf specifier registry to <printf.h>
Add __printf_arginfo_table, __printf_function_table, __printf_va_arg_table, __register_printf_specifier to include/printf.h.
Diffstat (limited to 'stdio-common/reg-printf.c')
-rw-r--r-- | stdio-common/reg-printf.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/stdio-common/reg-printf.c b/stdio-common/reg-printf.c index 400b99d2f6..5f4c6a24c2 100644 --- a/stdio-common/reg-printf.c +++ b/stdio-common/reg-printf.c @@ -30,13 +30,6 @@ printf_function **__printf_function_table attribute_hidden; __libc_lock_define_initialized (static, lock) -int __register_printf_specifier (int, printf_function, - printf_arginfo_size_function); -libc_hidden_proto (__register_printf_specifier) -int __register_printf_function (int, printf_function, - printf_arginfo_function); - - /* Register FUNC to be called to format SPEC specifiers. */ int __register_printf_specifier (int spec, printf_function converter, |