From 2eead2f6eab2aa1fbc727ce28d9fa9a8e90a1eec Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 14 Apr 2022 12:19:51 +0200 Subject: kernel: port init's `printf` implementation --- src/shared/printf.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/shared/printf.h (limited to 'src/shared/printf.h') diff --git a/src/shared/printf.h b/src/shared/printf.h new file mode 100644 index 0000000..45fd358 --- /dev/null +++ b/src/shared/printf.h @@ -0,0 +1,6 @@ +#pragma once +#include +#include + +int __printf_internal(const char *fmt, va_list argp, + void (*back)(void*, const char*, size_t), void *back_arg); -- cgit v1.2.3