aboutsummaryrefslogtreecommitdiff
path: root/include/os.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt2022-04-04 22:45:03 +0200
committerSimon Glass2022-06-28 03:09:51 +0100
commit7750ee45a62c7834f170f817232e432b8d2a14d3 (patch)
tree0d796cbb17c4ff3227daa2a3cbc7fd583fdffb53 /include/os.h
parentebcaafcded40da8ae6cb4234c2ba9901c7bee644 (diff)
sandbox: add function os_printf()
Before setting up the devices U-Boot's printf() function cannot be used for console output. Provide function os_printf() to print to stderr. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'include/os.h')
-rw-r--r--include/os.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/os.h b/include/os.h
index 10e198cf503..148178787bc 100644
--- a/include/os.h
+++ b/include/os.h
@@ -17,6 +17,13 @@ struct rtc_time;
struct sandbox_state;
/**
+ * os_printf() - print directly to OS console
+ *
+ * @format: format string
+ */
+int os_printf(const char *format, ...);
+
+/**
* Access to the OS read() system call
*
* @fd: File descriptor as returned by os_open()