5 #include <linux/compiler.h>
12 #if !defined(CONFIG_SPL_BUILD) || \
13 (defined(CONFIG_TPL_BUILD) && defined(CONFIG_TPL_SERIAL_SUPPORT)) || \
14 (defined(CONFIG_SPL_BUILD) && !defined(CONFIG_TPL_BUILD) && \
15 defined(CONFIG_SPL_SERIAL_SUPPORT))
16 void putc(const char c);
17 void puts(const char *s);
18 int __printf(1, 2) printf(const char *fmt, ...);
19 int vprintf(const char *fmt, va_list args);
21 static inline void putc(const char c)
25 static inline void puts(const char *s)
29 static inline int __printf(1, 2) printf(const char *fmt, ...)
34 static inline int vprintf(const char *fmt, va_list args)
41 * FILE based functions (can only be used AFTER relocation!)
49 #define eputc(c) fputc(stderr, c)
50 #define eputs(s) fputs(stderr, s)
51 #define eprintf(fmt, args...) fprintf(stderr, fmt, ##args)
53 int __printf(2, 3) fprintf(int file, const char *fmt, ...);
54 void fputs(int file, const char *s);
55 void fputc(int file, const char c);
59 #endif /* __STDIO_H */