| 798 | } |
| 799 | |
| 800 | static int vprintf_write(const char *str, size_t count, void *unused) |
| 801 | { |
| 802 | console_write(str, count); |
| 803 | return count; |
| 804 | } |
| 805 | |
| 806 | int vprintf(const char *fmt, va_list ap) |
| 807 | { |
nothing calls this directly
no test coverage detected