Skip to content
Snippets Groups Projects
Commit da70b4d1 authored by Hans de Goede's avatar Hans de Goede
Browse files

tinyprintf: Add vprintf implementation


vprintf is used by panic() which is used in various SPL paths on some
boards.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Acked-by: default avatarIan Campbell <ijc@hellion.org.uk>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 46fd625d
No related branches found
No related tags found
No related merge requests found
...@@ -130,6 +130,11 @@ abort: ...@@ -130,6 +130,11 @@ abort:
return 0; return 0;
} }
int vprintf(const char *fmt, va_list va)
{
return _vprintf(fmt, va, putc);
}
int printf(const char *fmt, ...) int printf(const char *fmt, ...)
{ {
va_list va; va_list va;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment