From eff82c45c589b42061344039d5f2efc8ad7c52df Mon Sep 17 00:00:00 2001 From: stefan Date: Fri, 21 Apr 2023 19:53:04 -0400 Subject: libfdt port and the required libc functions --- include/stdio.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/stdio.h (limited to 'include/stdio.h') diff --git a/include/stdio.h b/include/stdio.h new file mode 100644 index 0000000..9bfa8aa --- /dev/null +++ b/include/stdio.h @@ -0,0 +1,16 @@ +#ifndef _STDIO_H +#define _STDIO_H + +#include + +int getc(void); + +void putchar(const char); +void puts(const char *); +void printf(const char *, ...); + +#define stdin 0 +#define stdout 1 +#define stderr 2 + +#endif /* _STDIO_H */ -- cgit v1.2.3