diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2006-01-25 12:45:24 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2006-01-25 12:45:24 +0000 |
| commit | 6dbacee284ac789077c3f2a181437ff5a7ebb3b8 (patch) | |
| tree | 8b1b9e153704a2e4059c4a81c88f8bdaa0817a60 /lib/libc/stdio/xprintf.c | |
| parent | ea7075eb64ed5f24cd0eca7b7d4e47fb264e8e36 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/xprintf.c')
| -rw-r--r-- | lib/libc/stdio/xprintf.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/libc/stdio/xprintf.c b/lib/libc/stdio/xprintf.c index 3b2778200879..c7814fa7edf2 100644 --- a/lib/libc/stdio/xprintf.c +++ b/lib/libc/stdio/xprintf.c @@ -655,6 +655,16 @@ register_printf_render_std(const unsigned char *specs) __printf_render_hexdump, __printf_arginfo_hexdump); break; + case 'M': + register_printf_render(*specs, + __printf_render_errno, + __printf_arginfo_errno); + break; + case 'Q': + register_printf_render(*specs, + __printf_render_quote, + __printf_arginfo_quote); + break; case 'T': register_printf_render(*specs, __printf_render_time, |
